Skip to content

Commit

Permalink
Faster f64 inequality
Browse files Browse the repository at this point in the history
  • Loading branch information
tustvold committed Nov 9, 2022
1 parent 6b3a0a2 commit 184c68d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arrow-array/src/arithmetic.rs
Original file line number Diff line number Diff line change
Expand Up @@ -313,7 +313,7 @@ macro_rules! native_type_float_op {
}

fn is_ne(self, rhs: Self) -> bool {
self.total_cmp(&rhs).is_ne()
!self.is_eq(rhs)
}

fn is_lt(self, rhs: Self) -> bool {
Expand Down

0 comments on commit 184c68d

Please sign in to comment.