本文简要介绍rust语言中 core::num::NonZeroU128.is_power_of_two
的用法。
用法
pub const fn is_power_of_two(self) -> bool
返回 true
当且仅当 self == (1 << k)
对于某些 k
。
在许多架构上,此函数在底层整数类型上的性能优于is_power_of_two()
,因为可以避免对零的特殊处理。
例子
基本用法:
#![feature(nonzero_is_power_of_two)]
let eight = std::num::NonZeroU128::new(8).unwrap();
assert!(eight.is_power_of_two());
let ten = std::num::NonZeroU128::new(10).unwrap();
assert!(!ten.is_power_of_two());
相关用法
- Rust NonZeroU128.checked_pow用法及代码示例
- Rust NonZeroU128.leading_zeros用法及代码示例
- Rust NonZeroU128.saturating_pow用法及代码示例
- Rust NonZeroU128.saturating_add用法及代码示例
- Rust NonZeroU128.unchecked_add用法及代码示例
- Rust NonZeroU128.saturating_mul用法及代码示例
- Rust NonZeroU128.checked_mul用法及代码示例
- Rust NonZeroU128.trailing_zeros用法及代码示例
- Rust NonZeroU128.unchecked_mul用法及代码示例
- Rust NonZeroU128.checked_add用法及代码示例
- Rust NonZeroU128.checked_next_power_of_two用法及代码示例
- Rust NonZeroU128用法及代码示例
- Rust NonZeroU16.saturating_pow用法及代码示例
- Rust NonZeroU16.checked_pow用法及代码示例
- Rust NonZeroU16.trailing_zeros用法及代码示例
- Rust NonZeroU16.checked_mul用法及代码示例
- Rust NonZeroU16.unchecked_add用法及代码示例
- Rust NonZeroU16.unchecked_mul用法及代码示例
- Rust NonZeroU16.checked_add用法及代码示例
- Rust NonZeroU16.saturating_mul用法及代码示例
- Rust NonZeroU16.leading_zeros用法及代码示例
- Rust NonZeroU16.is_power_of_two用法及代码示例
- Rust NonZeroU16.saturating_add用法及代码示例
- Rust NonZeroU16用法及代码示例
- Rust NonZeroU16.checked_next_power_of_two用法及代码示例
注:本文由纯净天空筛选整理自rust-lang.org大神的英文原创作品 core::num::NonZeroU128.is_power_of_two。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。