moveNext method

bool moveNext()

Advances this cursor to the next cell.

Returns true when the cursor moved and a current cell is available.

Implementation

bool moveNext() {
  _ensureOpen();
  return bindings.ghostty_render_state_row_cells_next(_handle);
}