mirror of
https://github.com/nushell/nushell.git
synced 2024-11-16 05:23:44 +01:00
improve int division to be more nushell-like
This commit is contained in:
parent
76c92fc706
commit
a1f7a3c17b
@ -509,10 +509,17 @@ impl Value {
|
||||
match (self, rhs) {
|
||||
(Value::Int { val: lhs, .. }, Value::Int { val: rhs, .. }) => {
|
||||
if *rhs != 0 {
|
||||
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))
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user