module TTY::Cursor

def down(n = nil)

Other tags:
    Api: - public

Parameters:
  • n (Integer) --
def down(n = nil)
  CSI + "#{(n || 1)}B"
end