[][src]Trait hcomplex::transform::Chain

pub trait Chain<U>: Transform<U> {
    pub fn chain(self, other: Self) -> Self;
}

Transformation which instances could be chained into another one (i.e. forms a magma).

Required methods

pub fn chain(self, other: Self) -> Self[src]

Loading content...

Implementors

impl<U> Chain<U> for Moebius<U> where
    U: Add<Output = U> + Mul<Output = U> + Div<Output = U> + Clone
[src]

Loading content...