concision-math 0.1.20

Concision is a toolkit for designing machine-learning models in Rust.
1
2
3
4
5
pub trait PercentDiff<Rhs = Self> {
    type Output;

    fn percent_diff(self, rhs: Rhs) -> Self::Output;
}