Type Alias ConsTuples
pub type ConsTuples<I> = MapSpecialCase<I, ConsTuplesFn>;
Available on crate feature
dep_itertools
only.Expand description
An iterator that maps an iterator of tuples like
((A, B), C)
to an iterator of (A, B, C)
.
Used by the iproduct!()
macro.
Aliased Typeยง
struct ConsTuples<I> { /* private fields */ }