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

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

Counts the number of occurrences of each element.

Required Methods

Counts the number of occurrences of each element.

Counts the number of occurrences of each unsigned element.

Implementors