Trait DynumAdd

Source
pub trait DynumAdd<N: Any> {
    type Next;

    // Required method
    fn add(self, x: N) -> Self::Next;
}

Required Associated Types§

Required Methods§

Source

fn add(self, x: N) -> Self::Next

Implementors§

Source§

impl<U: DynumGet + Any, N: Any> DynumAdd<N> for U

Source§

type Next = DynumPair<N, U>