pub unsafe extern "rust-intrinsic" fn cttz_nonzero<T>(x: T) -> T where T: Copy,
Like cttz
, but extra-unsafe as it returns undef
when given an x
with value 0
.
This intrinsic does not have a stable counterpart.
#![feature(core_intrinsics)] use std::intrinsics::cttz_nonzero; let x = 0b0011_1000_u8; let num_trailing = unsafe { cttz_nonzero(x) }; assert_eq!(num_trailing, 3);
© 2010 The Rust Project Developers
Licensed under the Apache License, Version 2.0 or the MIT license, at your option.
https://doc.rust-lang.org/std/intrinsics/fn.cttz_nonzero.html