Module cmp
Expand description
Comparison kernels for Array
s.
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§
- Compares two [
GenericByteViewArray
] at indexleft_idx
andright_idx
- compare_
byte_ ⚠view_ unchecked Deprecated Comparing two [GenericByteViewArray
] at indexleft_idx
andright_idx
- Perform
left IS DISTINCT FROM right
operation on two [Datum
] - Perform
left == right
operation on two [Datum
]. - Perform
left > right
operation on two [Datum
]. - Perform
left >= right
operation on two [Datum
]. - Perform
left < right
operation on two [Datum
]. - Perform
left <= right
operation on two [Datum
]. - Perform
left != right
operation on two [Datum
]. - Perform
left IS NOT DISTINCT FROM right
operation on two [Datum
]