pub trait FixedNumberVariance<T: Float> {
// Required method
fn upto_delta(&self, upto: T) -> T;
}Expand description
Fixed value value variator(s).
Required Methods§
Sourcefn upto_delta(&self, upto: T) -> T
fn upto_delta(&self, upto: T) -> T
Take a number and alter it ± by [0 .. upto], and return result.