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

22 lines
462 B
Rust
Raw Normal View History

2021-10-21 15:29:57 +00:00
mod abs;
mod avg;
2021-10-24 23:58:18 +00:00
pub mod command;
mod max;
mod min;
mod product;
mod reducers;
mod round;
mod sqrt;
mod sum;
mod utils;
2021-10-21 14:52:26 +00:00
pub use abs::SubCommand as MathAbs;
pub use avg::SubCommand as MathAvg;
2021-10-24 23:58:18 +00:00
pub use command::MathCommand as Math;
pub use max::SubCommand as MathMax;
pub use min::SubCommand as MathMin;
pub use product::SubCommand as MathProduct;
pub use round::SubCommand as MathRound;
pub use sqrt::SubCommand as MathSqrt;
pub use sum::SubCommand as MathSum;