summaryrefslogtreecommitdiff
path: root/src/model/array.rs
diff options
context:
space:
mode:
authorLaurenz <laurmaedje@gmail.com>2023-01-20 14:14:13 +0100
committerLaurenz <laurmaedje@gmail.com>2023-01-20 14:21:59 +0100
commitb73b4f33bcf0e4ff2cfa8438433205cd3a323e43 (patch)
treeb59ee2c6f46558b7e6a0b2b50e0f7e93afeb3ace /src/model/array.rs
parentdd331f007cb9c9968605f8d3eaef8fb498c21322 (diff)
Fix a few clippy lints
Diffstat (limited to 'src/model/array.rs')
-rw-r--r--src/model/array.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/model/array.rs b/src/model/array.rs
index 28b9d1a0..0071d4f4 100644
--- a/src/model/array.rs
+++ b/src/model/array.rs
@@ -183,7 +183,7 @@ impl Array {
/// Transform each item in the array with a function.
pub fn map(&self, vm: &Vm, func: Func) -> SourceResult<Self> {
- if func.argc().map_or(false, |count| count < 1 || count > 2) {
+ if func.argc().map_or(false, |count| !(1..=2).contains(&count)) {
bail!(func.span(), "function must have one or two parameters");
}
let enumerate = func.argc() == Some(2);