Function append

Source
pub fn append<T: Tuple, U: Clone>(
    new_element: U,
) -> impl Fn(T) -> T::Appended<U>
Expand description

Adds new_element to the end of a tuple and returns the resulting new tuple.