pub trait Scale {
    fn scale(&self, scaler: i8) -> Self;
}
Expand description

Scale an SML value by the given scaler (base 10)

Required Methods§

Implementors§