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;
}
Available on crate feature compute_comparison only.
Expand description

Trait implemented by implementors of Simd8Lanes whose Simd8 implements PartialOrd.

Required Methods

Less than or equal to

Less than

Greater than

Greater than or equal to

Implementations on Foreign Types

Implementors