Function cttz_nonzero
unsafe const fn cttz_nonzero<T: Copy>(x: T) -> u32
Like cttz, but extra-unsafe as it returns undef when
given an x with value 0.
This intrinsic does not have a stable counterpart.
Examples
#
use cttz_nonzero;
let x = 0b0011_1000_u8;
let num_trailing = unsafe ;
assert_eq!;