Structs§
- Span
Index - Precomputed line-start byte offsets. The line is found in O(log n) (binary
search over the line starts); the 1-based char column is then O(line length)
(
chars().count()over the line prefix, so multi-byte chars count as one).
Functions§
- lambda_
anchors - (line, 1-based char col) of each
lambdakeyword token, in source order. - strip_
bom - Strip a leading UTF-8 BOM (
\u{feff}) fromsrc, if present.