Trait differential_dataflow::trace::layers::Builder[][src]

pub trait Builder {
    type Trie: Trie;
    fn boundary(&mut self) -> usize;
fn done(self) -> Self::Trie; }

A type used to assemble collections.

Associated Types

The type of collection produced.

Required Methods

Requests a commitment to the offset of the current-most sub-collection.

This is most often used by parent collections to indicate that some set of values are now logically distinct from the next set of values, and that the builder should acknowledge this and report the limit (to store as an offset in the parent collection).

Finalizes the building process and returns the collection.

Implementors