Trait polars::export::arrow::compute::comparison::Simd8PartialOrd
source · [−]pub trait Simd8PartialOrd: Copy {
fn lt_eq(self, other: Self) -> u8;
fn lt(self, other: Self) -> u8;
fn gt(self, other: Self) -> u8;
fn gt_eq(self, other: Self) -> u8;
}
This is supported on crate feature
compute_comparison
only.Expand description
Trait implemented by implementors of Simd8Lanes
whose Simd8
implements PartialOrd.