rsmorphy 0.4.0

Morphological analyzer / inflection engine for Russian and Ukrainian (soon) languages (WIP)
pub mod abc;

pub mod word;

pub mod dict;
pub mod paradigm;

pub mod affix;
pub mod ha;
pub mod hyphen;
pub mod initials;
pub mod shape;
pub mod unknown;

pub mod lex;
pub mod parsed;
pub mod score;
pub mod seen;
pub mod stack;

pub mod decode;

pub use self::word::WordStruct;

pub use self::dict::Dictionary;

pub use self::initials::Initials;
pub use self::initials::InitialsKind;

pub use self::ha::HyphenAdverb;
pub use self::hyphen::HyphenSeparatedParticle;

pub use self::affix::Affix;
pub use self::affix::AffixKind;

pub use self::shape::ShapeKind;
pub use self::shape::Shaped;

pub use self::unknown::Unknown;

pub use self::lex::Lex;
pub use self::parsed::ParseResult;
pub use self::parsed::Parsed;
pub use self::score::Score;
pub use self::seen::Seen;
pub use self::seen::SeenSet;