jmdict-fast 0.1.2

Blazing-fast Japanese dictionary engine with FST-based indexing
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Blazing-fast Japanese dictionary engine with FST-based indexing.

mod dict;
mod error;
mod model;
mod query;

pub use dict::Dict;
pub use error::JmdictError;
pub use model::*;
pub use query::{BatchQueryBuilder, LookupResultIter, QueryBuilder};

#[cfg(test)]
mod tests;