smartcore_proba/numbers/
mod.rs

1// this module has been ported from https://github.com/smartcorelib/smartcore/pull/108
2
3/// Base `Number` from `std` and `num-traits`
4pub mod basenum;
5
6/// implementation for `RealNumber`
7pub mod realnum;
8
9/// implementation for `FloatNumber`
10pub mod floatnum;