[][src]Trait doubled::AddAsDoubled

pub trait AddAsDoubled: Sized {
    fn add_as_doubled(self, other: Self) -> Doubled<Self>;
}

Required methods

fn add_as_doubled(self, other: Self) -> Doubled<Self>

Loading content...

Implementors

impl<T> AddAsDoubled for T where
    Self: Copy + Add<Output = T> + Sub<Output = T>, 
[src]

Loading content...