Trait yolol_devices::value::ValueTrait[][src]

pub trait ValueTrait {
Show methods fn post_inc(&mut self) -> YololValue;
fn pre_inc(&mut self) -> YololValue;
fn post_dec(&mut self) -> Option<YololValue>;
fn pre_dec(&mut self) -> Option<YololValue>;
fn fac(&self) -> Option<YololValue>;
fn abs(&self) -> Option<YololValue>;
fn sqrt(&self) -> Option<YololValue>;
fn sin(&self) -> Option<YololValue>;
fn asin(&self) -> Option<YololValue>;
fn cos(&self) -> Option<YololValue>;
fn acos(&self) -> Option<YololValue>;
fn tan(&self) -> Option<YololValue>;
fn atan(&self) -> Option<YololValue>;
fn pow(&self, e: &YololValue) -> Option<YololValue>;
fn not(&self) -> YololValue;
}

Required methods

Implementors