r2rs-nmath 0.1.1

Statistics programming for Rust based on R's nmath package
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
mod d;
mod p;
mod q;
mod r;

pub(crate) use self::{d::*, p::*, q::*, r::*};

#[cfg(test)]
mod tests;

#[cfg(all(test, feature = "enable_proptest"))]
mod proptests;

#[cfg(all(test, feature = "enable_covtest"))]
mod covtests;