operator < method
Implementation
bool operator <(CursorLocation other) =>
rowNum < other.rowNum ||
(rowNum == other.rowNum && colNum < other.colNum);
bool operator <(CursorLocation other) =>
rowNum < other.rowNum ||
(rowNum == other.rowNum && colNum < other.colNum);