pub fn cons_tuples<I, J>(
iterable: I,
) -> ConsTuples<<I as IntoIterator>::IntoIter, J>where
I: IntoIterator<Item = J>,Expand description
Create an iterator that maps for example iterators of
((A, B), C) to (A, B, C).
pub fn cons_tuples<I, J>(
iterable: I,
) -> ConsTuples<<I as IntoIterator>::IntoIter, J>where
I: IntoIterator<Item = J>,Create an iterator that maps for example iterators of
((A, B), C) to (A, B, C).