pub trait OrdField:
Bisectable
+ Copy
+ Neg<Output = Self>
+ Add<Self, Output = Self>
+ Sub<Self, Output = Self>
+ Mul<Self, Output = Self>
+ Div<Self, Output = Self> {
// Required methods
fn is_zero(self) -> bool;
fn twice(self) -> Self;
fn div64(self) -> Self;
}Expand description
Requirements on the type T to be able to use toms748
algorithm.
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".