Trait incrust::types::abc::IArithm [] [src]

pub trait IArithm {
    fn try_add<'o>(&self, other: Arg<'o>) -> Option<Arg<'o>>;
    fn try_sub<'o>(&self, other: Arg<'o>) -> Option<Arg<'o>>;
    fn try_mul<'o>(&self, other: Arg<'o>) -> Option<Arg<'o>>;
    fn try_div<'o>(&self, other: Arg<'o>) -> Option<Arg<'o>>;
}

Required Methods

Implementors