ConsTuples

Type Alias ConsTuples 

Source
pub type ConsTuples<I> = MapSpecialCase<I, ConsTuplesFn>;
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§

pub struct ConsTuples<I> {
    pub(crate) iter: I,
    pub(crate) f: ConsTuplesFn,
}

Fields§

§iter: I§f: ConsTuplesFn