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§
- compare_
byte_ view - Compares two
GenericByteViewArray
at indexleft_idx
andright_idx
- compare_
byte_ ⚠view_ unchecked Deprecated - Comparing two
GenericByteViewArray
at indexleft_idx
andright_idx
- distinct
- Perform
left IS DISTINCT FROM right
operation on twoDatum
- eq
- Perform
left == right
operation on twoDatum
. - gt
- Perform
left > right
operation on twoDatum
. - gt_eq
- Perform
left >= right
operation on twoDatum
. - lt
- Perform
left < right
operation on twoDatum
. - lt_eq
- Perform
left <= right
operation on twoDatum
. - neq
- Perform
left != right
operation on twoDatum
. - not_
distinct - Perform
left IS NOT DISTINCT FROM right
operation on twoDatum