number-diff 0.1.4

number-based is an attempt of mine to make working with calculus easier.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
pub mod useful_functions;
pub use useful_functions::*;
mod ops_impl;

#[cfg(feature = "nightly")]
pub mod calc_nightly;

#[cfg(feature = "default")]
pub mod calc_default;

#[cfg(feature = "serialize")]
pub mod calc_serialize;