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

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

A builder for creating layers from unsorted update tuples.

Trait Implementations

impl<K, V, T, R> Builder<K, V, T, R, OrdValBatch<K, V, T, R>> for OrdValBuilder<K, V, T, R> where
    K: Ord + Clone + 'static,
    V: Ord + Clone + 'static,
    T: Lattice + Ord + Clone + Debug + '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, V, T, R> Send for OrdValBuilder<K, V, T, R> where
    K: Send,
    T: Send,
    V: Send

impl<K, V, T, R> Sync for OrdValBuilder<K, V, T, R> where
    K: Sync,
    R: Sync,
    T: Sync,
    V: Sync