rustfst 1.3.0

Library for constructing, combining, optimizing, and searching weighted finite-state transducers (FSTs).
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
pub use self::data_structure::ConstFst;

mod converters;
mod data_structure;
mod expanded_fst;
mod fst;
mod iterators;
mod misc;
mod serializable_fst;

pub(super) static CONST_MIN_FILE_VERSION: i32 = 1;
pub(super) static CONST_ALIGNED_FILE_VERSION: i32 = 1;
pub(super) static CONST_FILE_VERSION: i32 = 2;
pub(super) static CONST_ARCH_ALIGNMENT: usize = 16;