Module cmp

Expand description

Comparison kernels for Arrays.

These kernels can leverage SIMD if available on your system. Currently no runtime detection is provided, you should enable the specific SIMD intrinsics using RUSTFLAGS="-C target-feature=+avx2" for example. See the documentation here for more information.

Functions§

compare_byte_view
Compares two GenericByteViewArray at index left_idx and right_idx
compare_byte_view_uncheckedDeprecated
Comparing two GenericByteViewArray at index left_idx and right_idx
distinct
Perform left IS DISTINCT FROM right operation on two Datum
eq
Perform left == right operation on two Datum.
gt
Perform left > right operation on two Datum.
gt_eq
Perform left >= right operation on two Datum.
lt
Perform left < right operation on two Datum.
lt_eq
Perform left <= right operation on two Datum.
neq
Perform left != right operation on two Datum.
not_distinct
Perform left IS NOT DISTINCT FROM right operation on two Datum