chore: Remove useless Fst prefixes

This commit is contained in:
Kerollmops
2018-05-12 13:22:07 +02:00
committed by Clément Renault
parent 5c76cd61f5
commit 593758c6d2
4 changed files with 17 additions and 26 deletions

View File

@ -3,16 +3,15 @@ extern crate bincode;
extern crate fst;
extern crate serde;
mod fst_map;
mod map;
use fst::Automaton;
pub use self::fst_map::{FstMap, FstMapBuilder};
pub use self::fst_map::{
pub use self::map::{Map, MapBuilder, Values};
pub use self::map::{
OpBuilder, IndexedValues,
OpWithStateBuilder, IndexedValuesWithState,
};
use self::fst_map::Values;
pub struct StreamBuilder<'m, 'v, T: 'v, A> {
inner: fst::map::StreamBuilder<'m, A>,