Trait itertools::misc::AppendTuple [] [src]

pub trait AppendTuple<X> {
    type Result;
    fn append(self, x: X) -> Self::Result;
}

A helper trait for (x,y,z) ++ w => (x,y,z,w), used for implementing iproduct! and izip!

Associated Types

type Result

Required Methods

fn append(self, x: X) -> Self::Result

Implementors