Expand description

Specialize differential dataflow operators.

Differential dataflow introduces a small number of specialized operators on collections. These operators have specialized implementations to make them work efficiently, and are in addition to several operations defined directly on the Collection type (e.g. map and filter).

Re-exports

pub use self::group::Group;
pub use self::group::Threshold;
pub use self::group::Count;
pub use self::group::consolidate_from;
pub use self::consolidate::Consolidate;
pub use self::iterate::Iterate;
pub use self::join::Join;
pub use self::join::JoinCore;
pub use self::count::CountTotal;
pub use self::threshold::ThresholdTotal;

Modules

Arranges a collection into a re-usable trace structure.
Aggregates the weights of equal records into at most one record.
Group records by a key, and apply a reduction function.
Group records by a key, and apply a reduction function.
Iterative application of a differential dataflow fragment.
Match pairs of records based on a key.
Reduce the collection to one occurrence of each distinct element.