isBeforeOrSame method

bool isBeforeOrSame(
  1. CellOffset other
)

Implementation

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