[][src]Trait parze::also::Also

pub trait Also<N> {
    type Alsoed;
    fn also(self, next: N) -> Self::Alsoed;
}

Associated Types

type Alsoed

Loading content...

Required methods

fn also(self, next: N) -> Self::Alsoed

Loading content...

Implementations on Foreign Types

impl<T, U> Also<T> for (U,)[src]

type Alsoed = (U, T)

impl<T, U, V> Also<T> for (U, V)[src]

type Alsoed = (U, V, T)

impl<T, U, V, W> Also<T> for (U, V, W)[src]

type Alsoed = (U, V, W, T)

impl<T, U, V, W, X> Also<T> for (U, V, W, X)[src]

type Alsoed = (U, V, W, X, T)

impl<T, U, V, W, X, Y> Also<T> for (U, V, W, X, Y)[src]

type Alsoed = (U, V, W, X, Y, T)

impl<T, U, V, W, X, Y, Z> Also<T> for (U, V, W, X, Y, Z)[src]

type Alsoed = (U, V, W, X, Y, Z, T)

Loading content...

Implementors

Loading content...