Module arrow::compute::kernels::cmp

source ·
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§

  • 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