nushell/crates/nu-cli/tests/commands/mod.rs
Jonathan Turner 7974e09eeb
Math operators (#1601)
* Add some math operations

* WIP for adding compound expressions

* precedence parsing

* paren expressions

* better lhs handling

* add compound comparisons and shorthand lefthand parsing

* Add or comparison and shorthand paths
2020-04-18 13:50:58 +12:00

41 lines
445 B
Rust

mod alias;
mod append;
mod calc;
mod cd;
mod compact;
mod cp;
mod default;
mod each;
mod edit;
mod enter;
mod first;
mod format;
mod get;
mod group_by;
mod headers;
mod histogram;
mod insert;
mod last;
mod lines;
mod ls;
mod math;
mod mkdir;
mod mv;
mod open;
mod parse;
mod pick;
mod prepend;
mod range;
mod rename;
mod reverse;
mod rm;
mod save;
mod sort_by;
mod split_by;
mod split_column;
mod sum;
mod touch;
mod uniq;
mod where_;
mod wrap;