Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
burakemir committed Dec 20, 2024
1 parent 86bc1cd commit d21f75d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion crates/polars-core/src/chunked_array/comparison/scalar.rs
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,8 @@ fn bitonic_mask<T: PolarsNumericType>(
0
};
let true_range_end = if let Some(f_d) = f_d {
true_range_start + values[true_range_start..].partition_point(|x| apply::<T>(f_d, *x, rhs))
true_range_start
+ values[true_range_start..].partition_point(|x| apply::<T>(f_d, *x, rhs))
} else {
values.len()
};
Expand Down

0 comments on commit d21f75d

Please sign in to comment.