Trait grafix_toolbox::math::TupleSelf

source ·
pub trait TupleSelf<A: Number>:
    TupleMap<A, R<A> = Self>
    + TupleFold<A>
    + TupleMath<A, A>
    + TupleIdentity {
    // Provided methods
    fn round(self) -> Self { ... }
    fn abs(self) -> Self { ... }
    fn sgn(self) -> Self { ... }
    fn pow2(self) -> Self { ... }
    fn mag(self) -> A { ... }
    fn norm(self) -> Self { ... }
}

Provided Methods§

source

fn round(self) -> Self

source

fn abs(self) -> Self

source

fn sgn(self) -> Self

source

fn pow2(self) -> Self

source

fn mag(self) -> A

source

fn norm(self) -> Self

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<S: TupleMap<A, R<A> = Self> + TupleFold<A> + TupleMath<A, A> + TupleIdentity, A: Number> TupleSelf<A> for S