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


Rust u128.wrapping_next_power_of_two用法及代码示例


本文简要介绍rust语言中 u128.wrapping_next_power_of_two 的用法。

用法

pub const fn wrapping_next_power_of_two(self) -> u128

返回大于或等于 n 的 2 的最小幂。如果下一个 2 的幂大于该类型的最大值,则返回值被包装到 0

例子

基本用法:

#![feature(wrapping_next_power_of_two)]

assert_eq!(2u128.wrapping_next_power_of_two(), 2);
assert_eq!(3u128.wrapping_next_power_of_two(), 4);
assert_eq!(u128::MAX.wrapping_next_power_of_two(), 0);

相关用法


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