16e652d70Sopenharmony_ci#![allow(clippy::module_name_repetitions)] 26e652d70Sopenharmony_ci 36e652d70Sopenharmony_cipub fn xid_start_fst() -> fst::Set<&'static [u8]> { 46e652d70Sopenharmony_ci let data = include_bytes!("xid_start.fst"); 56e652d70Sopenharmony_ci fst::Set::from(fst::raw::Fst::new(data.as_slice()).unwrap()) 66e652d70Sopenharmony_ci} 76e652d70Sopenharmony_ci 86e652d70Sopenharmony_cipub fn xid_continue_fst() -> fst::Set<&'static [u8]> { 96e652d70Sopenharmony_ci let data = include_bytes!("xid_continue.fst"); 106e652d70Sopenharmony_ci fst::Set::from(fst::raw::Fst::new(data.as_slice()).unwrap()) 116e652d70Sopenharmony_ci} 12