[][src]Struct ranagrams::util::CharCount

pub struct CharCount {
    pub counts: Vec<usize>,
    pub sum: usize,
    pub first: usize,
    pub last: usize,
    // some fields omitted
}

The fundamental representation of the undigested bit of a phrase in anagram calculation, a CharCount keeps track of the characters still looking for a foster word. To accelerate processing, they also cache the first character offset with a non-zero count, the last such offset, the sum of their counts, and a checksum sufficient for hashing and identification.

Fields

counts: Vec<usize>sum: usizefirst: usizelast: usize

Implementations

impl CharCount[src]

pub fn hashed(&self) -> bool[src]

pub fn calculate_hash(&mut self, powers_of_ten: &[u128])[src]

pub unsafe fn decrement(&mut self, i: usize)[src]

pub fn add(&mut self, word: Vec<usize>) -> bool[src]

pub fn subtract(&mut self, word: Vec<usize>) -> Option<(usize, Vec<usize>)>[src]

pub fn set_limits(&mut self)[src]

pub fn has(&self, i: usize) -> bool[src]

pub fn to_set(&self) -> CharSet[src]

pub fn is_empty(&self) -> bool[src]

Trait Implementations

impl Clone for CharCount[src]

impl Debug for CharCount[src]

impl Eq for CharCount[src]

impl Hash for CharCount[src]

impl PartialEq<CharCount> for CharCount[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,