nushell/crates/nu-command/src/math
Ryan Devenney 644164fab3
math floor and ceil round to int rather than float #8258 (#8269)
# Description

#8258 

Math floor and ceil return int types rather than floats.

# User-Facing Changes

Before:
```
/home/rdevenney/projects/open_source/nushell〉[(3.14 | math ceil | describe), 
(3.14 | math floor | describe), 
(3 | math ceil | describe), 
(3 | math floor | describe)]
╭───┬───────╮
│ 0 │ float │
│ 1 │ float │
│ 2 │ int   │
│ 3 │ int   │
╰───┴───────╯

```

After:
```
/home/rdevenney/projects/open_source/nushell〉[(3.14 | math ceil | describe), 
(3.14 | math floor | describe), 
(3 | math ceil | describe), 
(3 | math floor | describe)]
╭───┬─────╮
│ 0 │ int │
│ 1 │ int │
│ 2 │ int │
│ 3 │ int │
╰───┴─────╯

```

# Tests + Formatting

Don't forget to add tests that cover your changes.

Make sure you've run and fixed any issues with these commands:

- `cargo fmt --all -- --check` to check standard code formatting (`cargo
fmt --all` applies these changes)
- `cargo clippy --workspace -- -D warnings -D clippy::unwrap_used -A
clippy::needless_collect` to check that you're using the standard code
style
- `cargo test --workspace` to check that all tests pass

# After Submitting

If your PR had any user-facing changes, update [the
documentation](https://github.com/nushell/nushell.github.io) after the
PR is merged, if necessary. This will help us keep the docs up to date.
2023-02-28 21:28:16 -08:00
..
abs.rs Use imported names in Command::run signatures (#7967) 2023-02-05 22:17:46 +01:00
arccos.rs Use imported names in Command::run signatures (#7967) 2023-02-05 22:17:46 +01:00
arccosh.rs Use imported names in Command::run signatures (#7967) 2023-02-05 22:17:46 +01:00
arcsin.rs Use imported names in Command::run signatures (#7967) 2023-02-05 22:17:46 +01:00
arcsinh.rs Use imported names in Command::run signatures (#7967) 2023-02-05 22:17:46 +01:00
arctan.rs Use imported names in Command::run signatures (#7967) 2023-02-05 22:17:46 +01:00
arctanh.rs Use imported names in Command::run signatures (#7967) 2023-02-05 22:17:46 +01:00
avg.rs Use imported names in Command::run signatures (#7967) 2023-02-05 22:17:46 +01:00
ceil.rs math floor and ceil round to int rather than float #8258 (#8269) 2023-02-28 21:28:16 -08:00
cos.rs Update few examples of math commands (#7987) 2023-02-06 13:43:00 +01:00
cosh.rs Use imported names in Command::run signatures (#7967) 2023-02-05 22:17:46 +01:00
euler.rs Use imported names in Command::run signatures (#7967) 2023-02-05 22:17:46 +01:00
floor.rs math floor and ceil round to int rather than float #8258 (#8269) 2023-02-28 21:28:16 -08:00
ln.rs Use imported names in Command::run signatures (#7967) 2023-02-05 22:17:46 +01:00
log.rs Use imported names in Command::run signatures (#7967) 2023-02-05 22:17:46 +01:00
math_.rs Use imported names in Command::run signatures (#7967) 2023-02-05 22:17:46 +01:00
max.rs Use imported names in Command::run signatures (#7967) 2023-02-05 22:17:46 +01:00
median.rs Use imported names in Command::run signatures (#7967) 2023-02-05 22:17:46 +01:00
min.rs Use imported names in Command::run signatures (#7967) 2023-02-05 22:17:46 +01:00
mod.rs Remove math eval command (#7284) 2023-01-04 23:50:18 +01:00
mode.rs Use imported names in Command::run signatures (#7967) 2023-02-05 22:17:46 +01:00
pi.rs Use imported names in Command::run signatures (#7967) 2023-02-05 22:17:46 +01:00
product.rs Use imported names in Command::run signatures (#7967) 2023-02-05 22:17:46 +01:00
reducers.rs Standardise the use of ShellError::UnsupportedInput and ShellError::TypeMismatch and add spans to every instance of the former (#7217) 2022-12-23 01:48:53 -05:00
round.rs Use imported names in Command::run signatures (#7967) 2023-02-05 22:17:46 +01:00
sin.rs Use imported names in Command::run signatures (#7967) 2023-02-05 22:17:46 +01:00
sinh.rs Use imported names in Command::run signatures (#7967) 2023-02-05 22:17:46 +01:00
sqrt.rs Use imported names in Command::run signatures (#7967) 2023-02-05 22:17:46 +01:00
stddev.rs Use imported names in Command::run signatures (#7967) 2023-02-05 22:17:46 +01:00
sum.rs Use imported names in Command::run signatures (#7967) 2023-02-05 22:17:46 +01:00
tan.rs Update few examples of math commands (#7987) 2023-02-06 13:43:00 +01:00
tanh.rs Update few examples of math commands (#7987) 2023-02-06 13:43:00 +01:00
tau.rs Update few examples of math commands (#7987) 2023-02-06 13:43:00 +01:00
utils.rs Use imported names in Command::run signatures (#7967) 2023-02-05 22:17:46 +01:00
variance.rs Use imported names in Command::run signatures (#7967) 2023-02-05 22:17:46 +01:00