[−][src]Trait differential_dataflow::trace::layers::TupleBuilder
A type used to assemble collections from ordered sequences of tuples.
Associated Types
type Item
The type of item accepted for construction.
Required methods
fn new() -> Self
Allocates a new builder.
fn with_capacity(cap: usize) -> Self
Allocates a new builder with capacity for at least cap
tuples.
fn push_tuple(&mut self, tuple: Self::Item)
Inserts a new into the collection.