Function bit_lowest_set_reset_u32
pub fn bit_lowest_set_reset_u32(a: u32) -> u32 ⓘ
Available on crate feature
dep_safe_arch
only.Expand description
Resets (clears) the lowest set bit.
If the input is 0 you get 0 back.
-
Formula:
(a - 1) & a
-
Intrinsic:
_blsr_u32
-
Assembly:
blsr r32, r32