* Update calculate to return a table when Value is a table * impl mode subcommand for math * add tests for math mode subcommand * add table/row tests for math mode subcommand * fix formatting
17 lines
391 B
Rust
17 lines
391 B
Rust
pub mod avg;
|
|
pub mod command;
|
|
pub mod max;
|
|
pub mod median;
|
|
pub mod min;
|
|
pub mod mode;
|
|
pub mod sum;
|
|
pub mod utils;
|
|
|
|
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 sum::SubCommand as MathSummation;
|