当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Rust ctlz_nonzero用法及代码示例


本文简要介绍rust语言中 Function std::intrinsics::ctlz_nonzero 的用法。

用法

pub const unsafe extern "rust-intrinsic" fn ctlz_nonzero<T>(x: T) -> T where    T: Copy,

ctlz ,但 extra-unsafe 因为它返回 undef 当给定一个带有值 x0

这个内在没有一个稳定的对应物。

例子

#![feature(core_intrinsics)]

use std::intrinsics::ctlz_nonzero;

let x = 0b0001_1100_u8;
let num_leading = unsafe { ctlz_nonzero(x) };
assert_eq!(num_leading, 3);

相关用法


注:本文由纯净天空筛选整理自rust-lang.org大神的英文原创作品 Function std::intrinsics::ctlz_nonzero。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。