Trait tuple_utils::Merge [] [src]

pub trait Merge<T> {
    type Output;
    fn merge(self, _: T) -> Self::Output;
}

Helper trait that allow for merging of tuples

Associated Types

Required Methods

merge LHS with RHS returning a new tuple that contains the elements of both tuples ordering is preserved such that LHS elements come before RHS elements.

Implementors