plwordnet 0.0.4

Native Rust library facilitating the integration of plWordNet 4.2 lexical resources.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
mod model;
mod parser;
mod logic;

#[cfg(test)]
mod tests;


pub use model::{
    Language,
    PlWordNet,
    Metadata,
    LexicalUnitView,
    SynsetView,
    LexicalRelationView,
    SynsetRelationView,
    RelationTypeView
};