Trait lib::util::vec::Comparator
source · pub trait Comparator {
// Required methods
fn smaller(&self) -> impl Fn(usize, usize) -> bool;
fn greater(&self) -> impl Fn(usize, usize) -> bool;
}
Required Methods§
fn smaller(&self) -> impl Fn(usize, usize) -> bool
fn greater(&self) -> impl Fn(usize, usize) -> bool
Object Safety§
This trait is not object safe.