//! Emoji annotation data derived from Unicode CLDR.
//! Generated from CLDR annotations/en.xml and annotationsDerived/en.xml.
//! Do not edit manually — regenerate with scripts/gen_emoji_data.py.
//!
//! PHF maps generated by build.rs from src/tables/data/emoji_*.tsv.
// Single-codepoint emoji to short name (1727 entries).
include!;
// Multi-codepoint emoji sequences (2553 entries) as a compact code-point trie
// (#242 item 4): the production matcher walks `EMOJI_MULTI_TRIE_*` directly,
// with no per-probe hex-key construction and a smaller table than the former
// hex-string PHF.
include!;
// The former hex-key PHF, retained **test-only** as the equivalence oracle for
// the trie (`emoji_trie_matches_phf` / `match_emoji_at` agreement). Gating the
// include behind `#[cfg(test)]` keeps it out of the shipped binary — the
// table-size win.
include!;
// Codepoints that can begin a multi-codepoint emoji sequence (188 entries).
include!;
/// Maximum length of any multi-codepoint emoji sequence.
pub const MAX_EMOJI_SEQ_LEN: usize = 9;