Expand description
Compact coordinate representations shared across the engine and bindings.
Coord encodes an absolute cell position (row, column) in 64 bits with the same
limits as Excel: 1,048,576 rows × 16,384 columns. RelativeCoord extends that
layout with anchor flags that preserve the $A$1 semantics needed while parsing
and adjusting formulas.
Structs§
- Coord
- Absolute grid coordinate (row, column) with Excel-compatible bounds.
- Relative
Coord - Relative coordinate (row, column) with anchor flags.
Enums§
- A1Parse
Error - Errors that can occur while parsing A1-style references.
- Coord
Error - Errors returned when constructing coordinates from unchecked inputs.
Functions§
- col_
index_ from_ letters_ 1based - Convert Excel column letters into a 1-based column index.
- col_
letters_ from_ 1based - Convert a 1-based column index into its Excel letters (1 → “A”).
- parse_
a1_ 1based - Parse an A1-style reference and return 1-based coordinates plus absolute flags.