本文简要介绍rust语言中 u8.wrapping_next_power_of_two
的用法。
用法
pub const fn wrapping_next_power_of_two(self) -> u8
返回大于或等于 n
的 2 的最小幂。如果下一个 2 的幂大于该类型的最大值,则返回值被包装到 0
。
例子
基本用法:
#![feature(wrapping_next_power_of_two)]
assert_eq!(2u8.wrapping_next_power_of_two(), 2);
assert_eq!(3u8.wrapping_next_power_of_two(), 4);
assert_eq!(u8::MAX.wrapping_next_power_of_two(), 0);
相关用法
- Rust u8.wrapping_neg用法及代码示例
- Rust u8.wrapping_shl用法及代码示例
- Rust u8.wrapping_shr用法及代码示例
- Rust u8.wrapping_div用法及代码示例
- Rust u8.wrapping_rem用法及代码示例
- Rust u8.wrapping_rem_euclid用法及代码示例
- Rust u8.wrapping_add用法及代码示例
- Rust u8.wrapping_add_signed用法及代码示例
- Rust u8.wrapping_sub用法及代码示例
- Rust u8.wrapping_div_euclid用法及代码示例
- Rust u8.wrapping_pow用法及代码示例
- Rust u8.wrapping_mul用法及代码示例
- Rust u8.widening_mul用法及代码示例
- Rust u8.rotate_left用法及代码示例
- Rust u8.pow用法及代码示例
- Rust u8.is_ascii_whitespace用法及代码示例
- Rust u8.from_ne_bytes用法及代码示例
- Rust u8.saturating_add用法及代码示例
- Rust u8.overflowing_shr用法及代码示例
- Rust u8.overflowing_shl用法及代码示例
- Rust u8.abs_diff用法及代码示例
- Rust u8.to_ne_bytes用法及代码示例
- Rust u8.saturating_pow用法及代码示例
- Rust u8.to_be_bytes用法及代码示例
- Rust u8.carrying_mul用法及代码示例
注:本文由纯净天空筛选整理自rust-lang.org大神的英文原创作品 u8.wrapping_next_power_of_two。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。