pub fn triples<T: Clone, U: Clone, V>(
left: impl Iterator<Item = T>,
middle: impl Iterator<Item = U> + Clone,
right: impl Iterator<Item = V> + Clone,
) -> impl Iterator<Item = (T, U, V)>
Expand description
Return the cartesian product of three iterators.