Trait differential_dataflow::operators::group::Count [] [src]

pub trait Count<G: Scope, K: Data> where G::Timestamp: LeastUpperBound {
    fn count(&self) -> Collection<G, (K, Delta)>;
}

Counts the number of occurrences of each element.

Required Methods

fn count(&self) -> Collection<G, (K, Delta)>

Counts the number of occurrences of each element.

Implementors