unicode-id-start 1.0.3

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

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

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