lib 0.0.2-alpha

LIB: Math and container utilities for Rust. Notice: study purpose, not production ready.
Documentation
1
2
3
4
5
6
7
8
9
pub trait Contains<T>{
    fn contains(&self, value:&T) -> bool;
}
pub trait Insert<T>{
    fn insert(&mut self, value:T);
}
pub trait Remove<T>: Contains<T>{
    fn remove(&mut self, value:T)->bool;
}