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