rust-stemmers 1.2.0

A rust implementation of some popular snowball stemming algorithms
Documentation
1
2
3
4
5
6
use snowball::SnowballEnv;

pub struct Among<T: 'static>(pub &'static str,
                             pub i32,
                             pub i32,
                             pub Option<&'static (dyn Fn(&mut SnowballEnv, &mut T) -> bool + Sync)>);