pub const OPERATORS: &[(&str, Operator)];Expand description
Operator table — single source of truth for all supported operators.
Entries are ordered longest-match first so the lexer can scan top-to-bottom and stop at the first match without look-ahead. To add a new operator, insert it here (maintaining longest-first order). No other file needs to change.