本文簡要介紹rust語言中 std::num::NonZeroI16.leading_zeros
的用法。
用法
pub const fn leading_zeros(self) -> u32
返回 self
的二進製表示中前導零的數量。
在許多架構上,此函數在底層整數類型上的性能優於leading_zeros()
,因為可以避免對零的特殊處理。
例子
基本用法:
let n = std::num::NonZeroI16::new(-1i16).unwrap();
assert_eq!(n.leading_zeros(), 0);
相關用法
- Rust NonZeroI16.saturating_abs用法及代碼示例
- Rust NonZeroI16.trailing_zeros用法及代碼示例
- Rust NonZeroI16.checked_abs用法及代碼示例
- Rust NonZeroI16.checked_pow用法及代碼示例
- Rust NonZeroI16.unsigned_abs用法及代碼示例
- Rust NonZeroI16.overflowing_abs用法及代碼示例
- Rust NonZeroI16.checked_mul用法及代碼示例
- Rust NonZeroI16.unchecked_mul用法及代碼示例
- Rust NonZeroI16.abs用法及代碼示例
- Rust NonZeroI16.wrapping_abs用法及代碼示例
- Rust NonZeroI16.saturating_pow用法及代碼示例
- Rust NonZeroI16.saturating_mul用法及代碼示例
- Rust NonZeroI16用法及代碼示例
- Rust NonZeroI128.saturating_pow用法及代碼示例
- Rust NonZeroI128.abs用法及代碼示例
- Rust NonZeroI128.unchecked_mul用法及代碼示例
- Rust NonZeroI128.wrapping_abs用法及代碼示例
- Rust NonZeroI128.checked_abs用法及代碼示例
- Rust NonZeroI128.leading_zeros用法及代碼示例
- Rust NonZeroI128.overflowing_abs用法及代碼示例
- Rust NonZeroI128.unsigned_abs用法及代碼示例
- Rust NonZeroI128.saturating_abs用法及代碼示例
- Rust NonZeroI128.trailing_zeros用法及代碼示例
- Rust NonZeroI128.checked_mul用法及代碼示例
- Rust NonZeroI128.checked_pow用法及代碼示例
注:本文由純淨天空篩選整理自rust-lang.org大神的英文原創作品 std::num::NonZeroI16.leading_zeros。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。