improve int division to be more nushell-like

This commit is contained in:
JT 2021-09-06 17:35:58 +12:00
parent 76c92fc706
commit a1f7a3c17b

View File

@ -509,10 +509,17 @@ impl Value {
match (self, rhs) {
(Value::Int { val: lhs, .. }, Value::Int { val: rhs, .. }) => {
if *rhs != 0 {
Ok(Value::Int {
val: lhs / rhs,
span,
})
if lhs % rhs == 0 {
Ok(Value::Int {
val: lhs / rhs,
span,
})
} else {
Ok(Value::Float {
val: (*lhs as f64) / (*rhs as f64),
span,
})
}
} else {
Err(ShellError::DivisionByZero(op))
}