[−][src]Trait main::Ranking
frank::Ranking can be used with any generic vector that implements PartialOrd and Clone, and will return rankings from "greatest = 0" to least. just 'use frank::Ranking' for bolt on vector ranking functions like 'let myranks = myvector.rank();' Useful for non-parametric statistics like the difference between vec![82, 65, 78, 69, 68].rank() and vec!["r","a","n","k","ed"].rank()
Required methods
Loading content...Implementations on Foreign Types
impl<T> Ranking<T> for Vec<T> where
T: Clone + PartialOrd, [src]
Loading content...
impl<T> Ranking<T> for Vec<T> where
T: Clone + PartialOrd,