Struct abstutil::Counter [−][src]
Fields
map: BTreeMap<T, usize>
sum: usize
Implementations
impl<T: Ord + PartialEq + Clone> Counter<T>
[src]
impl<T: Ord + PartialEq + Clone> Counter<T>
[src]pub fn new() -> Counter<T>
[src]
pub fn add(&mut self, val: T, amount: usize) -> usize
[src]
pub fn inc(&mut self, val: T) -> usize
[src]
pub fn get(&self, val: T) -> usize
[src]
pub fn sorted_asc(&self) -> Vec<Vec<T>>
[src]
Values with the same count are grouped together
pub fn highest_n(&self, n: usize) -> Vec<(T, usize)>
[src]
pub fn max(&self) -> usize
[src]
pub fn sum(&self) -> usize
[src]
pub fn compare(self, other: Counter<T>) -> Vec<(T, usize, usize)>
[src]
pub fn borrow(&self) -> &BTreeMap<T, usize>
[src]
pub fn consume(self) -> BTreeMap<T, usize>
[src]
Trait Implementations
Auto Trait Implementations
impl<T> RefUnwindSafe for Counter<T> where
T: RefUnwindSafe,
T: RefUnwindSafe,
impl<T> Send for Counter<T> where
T: Send,
T: Send,
impl<T> Sync for Counter<T> where
T: Sync,
T: Sync,
impl<T> Unpin for Counter<T>
impl<T> UnwindSafe for Counter<T> where
T: RefUnwindSafe,
T: RefUnwindSafe,