pub fn aggregate<G, K, D, F>(
    collection: Collection<G, ((usize, K), D)>,
    combine: F
) -> Collection<G, ((usize, usize, K), D)>where
    G: Scope,
    G::Timestamp: Lattice,
    K: Data + Hash,
    D: Data + Hash,
    F: Fn(&K, &D, &D) -> D + 'static,
Expand description

Accumulate data in collection into all powers-of-two intervals containing them.