module TTY::Cursor

def forward(n = nil)

Other tags:
    Api: - public

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