pub trait Calculus {
    fn derivative(&self) -> Self;
    fn integral(&self) -> Self;
    fn integrate<T: Into<f64> + Copy>(&self, interval: (T, T)) -> f64;
}

Required Methods

Implementors