pub trait IsolateHighestOne: Sized {
type Output;
// Required method
fn isolate_highest_one(self) -> Self::Output;
}Expand description
Isolates the highest one-bit, branchlessly.
Required Associated Types§
Required Methods§
fn isolate_highest_one(self) -> Self::Output
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".