nushell/crates/nu-command/src/math/mod.rs

36 lines
821 B
Rust
Raw Normal View History

2021-10-21 15:29:57 +00:00
mod abs;
mod avg;
2021-11-03 11:59:08 +00:00
mod ceil;
mod eval;
mod floor;
pub mod math_;
mod max;
mod median;
mod min;
mod mode;
mod product;
mod reducers;
mod round;
mod sqrt;
mod stddev;
mod sum;
mod utils;
mod variance;
2021-10-21 14:52:26 +00:00
pub use abs::SubCommand as MathAbs;
pub use avg::SubCommand as MathAvg;
2021-11-03 11:59:08 +00:00
pub use ceil::SubCommand as MathCeil;
pub use eval::SubCommand as MathEval;
pub use floor::SubCommand as MathFloor;
pub use math_::MathCommand as Math;
pub use max::SubCommand as MathMax;
pub use median::SubCommand as MathMedian;
pub use min::SubCommand as MathMin;
pub use mode::SubCommand as MathMode;
pub use product::SubCommand as MathProduct;
pub use round::SubCommand as MathRound;
pub use sqrt::SubCommand as MathSqrt;
pub use stddev::SubCommand as MathStddev;
pub use sum::SubCommand as MathSum;
pub use variance::SubCommand as MathVariance;