Module rustfst::algorithms::concat[][src]

Structs

ConcatFst

Computes the concatenation (product) of two FSTs; this version is a delayed FST. If FST1 transduces string x to y with weight a and FST2 transduces string w to v with weight b, then their concatenation transduces string xw to yv with Times(a, b).

Functions

concat

Performs the concatenation of two wFSTs. If A transduces string x to y with weight a and B transduces string w to v with weight b, then their concatenation transduces string xw to yv with weight a ⊗ b.