Struct differential_dataflow::trace::implementations::ord::OrdKeyBuilder[][src]

pub struct OrdKeyBuilder<K: Ord, T: Ord + Lattice, R: Diff> { /* fields omitted */ }

A builder for creating layers from unsorted update tuples.

Trait Implementations

impl<K, T, R> Builder<K, (), T, R, OrdKeyBatch<K, T, R>> for OrdKeyBuilder<K, T, R> where
    K: Ord + Clone + 'static,
    T: Lattice + Ord + Clone + 'static,
    R: Diff
[src]

Allocates an empty builder.

Allocates an empty builder with some capacity.

Adds an element to the batch.

Completes building and returns the batch.

Adds an ordered sequence of elements to the batch.

Auto Trait Implementations

impl<K, T, R> Send for OrdKeyBuilder<K, T, R> where
    K: Send,
    T: Send

impl<K, T, R> Sync for OrdKeyBuilder<K, T, R> where
    K: Sync,
    R: Sync,
    T: Sync