isBefore method

bool isBefore(
  1. CellOffset other
)

Implementation

bool isBefore(CellOffset other) {
  return y < other.y || (y == other.y && x < other.x);
}