isAfterOrSame method

bool isAfterOrSame(
  1. CellOffset other
)

Implementation

bool isAfterOrSame(CellOffset other) {
  return y > other.y || (y == other.y && x >= other.x);
}