unicode-ident 1.0.6

Determine whether characters have the XID_Start or XID_Continue properties according to Unicode Standard Annex #31
Documentation
#![allow(clippy::module_name_repetitions)]

pub fn xid_start_fst() -> fst::Set<&'static [u8]> {
    let data = include_bytes!("xid_start.fst");
    fst::Set::from(fst::raw::Fst::new(data.as_slice()).unwrap())
}

pub fn xid_continue_fst() -> fst::Set<&'static [u8]> {
    let data = include_bytes!("xid_continue.fst");
    fst::Set::from(fst::raw::Fst::new(data.as_slice()).unwrap())
}