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


Rust Wrapping.next_power_of_two用法及代码示例


本文简要介绍rust语言中 std::num::Wrapping.next_power_of_two 的用法。

用法

pub fn next_power_of_two(self) -> Wrapping<usize>

返回大于或等于 self 的 2 的最小幂。

当返回值溢出时(即 self > (1 << (N-1)) 类型为 uN ),溢出到 2^N = 0

例子

基本用法:

#![feature(wrapping_next_power_of_two)]
use std::num::Wrapping;

assert_eq!(Wrapping(2usize).next_power_of_two(), Wrapping(2));
assert_eq!(Wrapping(3usize).next_power_of_two(), Wrapping(4));
assert_eq!(Wrapping(200_u8).next_power_of_two(), Wrapping(0));

相关用法


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