mirror of
https://github.com/nushell/nushell
synced 2025-01-06 18:29:02 +00:00
3c583c9a20
The following math commands are being moved to nu-cmd-extra * e (euler) * exp * ln This should conclude moving the extra math commands as discussed in yesterday's core team meeting... The remaining math commands will stay in nu-command (for now)....
36 lines
825 B
Rust
36 lines
825 B
Rust
mod abs;
|
|
mod avg;
|
|
mod ceil;
|
|
mod floor;
|
|
mod log;
|
|
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;
|
|
|
|
pub use abs::SubCommand as MathAbs;
|
|
pub use avg::SubCommand as MathAvg;
|
|
pub use ceil::SubCommand as MathCeil;
|
|
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;
|
|
|
|
pub use self::log::SubCommand as MathLog;
|