| Crates.io | mul |
| lib.rs | mul |
| version | 0.1.0 |
| created_at | 2021-07-03 16:28:18.869629+00 |
| updated_at | 2021-07-03 16:28:18.869629+00 |
| description | Bengali stemmer |
| homepage | |
| repository | https://github.com/OpenBangla/mul |
| max_upload_size | |
| id | 418258 |
| size | 10,347 |
mulA Bengali stemmer written in Rust.
mul currently implements a stepwise approach to removing inflections from Bengali words 1.
use mul::noun_stemmer;
fn main() {
assert_eq!(noun_stemmer("বাংলায়"), "বাংলা");
assert_eq!(noun_stemmer("মানুষকে"), "মানুষ");
}