mirror of
https://github.com/nushell/nushell.git
synced 2025-04-09 21:28:55 +02:00
* add variance (population) subcommand to math * impl variance subcommand with spanning errors for invalid types * add stddev subcommand to math * rename bytes to filesize * clippy fix -- use expect instead of unwrap in variance tests
21 lines
513 B
Rust
21 lines
513 B
Rust
pub mod avg;
|
|
pub mod command;
|
|
pub mod max;
|
|
pub mod median;
|
|
pub mod min;
|
|
pub mod mode;
|
|
pub mod stddev;
|
|
pub mod sum;
|
|
pub mod utils;
|
|
pub mod variance;
|
|
|
|
pub use avg::SubCommand as MathAverage;
|
|
pub use command::Command as Math;
|
|
pub use max::SubCommand as MathMaximum;
|
|
pub use median::SubCommand as MathMedian;
|
|
pub use min::SubCommand as MathMinimum;
|
|
pub use mode::SubCommand as MathMode;
|
|
pub use stddev::SubCommand as MathStddev;
|
|
pub use sum::SubCommand as MathSummation;
|
|
pub use variance::SubCommand as MathVariance;
|