本文简要介绍rust语言中 Struct std::num::Wrapping
的用法。
用法
#[repr(transparent)]pub struct Wrapping<T>(pub T);
在 T
上提供 intentionally-wrapped 算术。
u32
值上的 +
等操作旨在永不溢出,并且在某些调试配置中检测到溢出并导致Panics。虽然大多数算术都属于这一类,但一些代码明确期望并依赖于模块化算术(例如散列)。
包装算术可以通过 wrapping_add
之类的方法或通过 Wrapping<T>
类型来实现,该类型表示对基础值的所有标准算术运算都旨在具有包装语义。
可以通过Wrapping
元组的.0
索引检索基础值。
例子
use std::num::Wrapping;
let zero = Wrapping(0u32);
let one = Wrapping(1u32);
assert_eq!(u32::MAX, (zero - one).0);
布局
Wrapping<T>
保证与 T
具有相同的布局和 ABI。
元组字段
0: T
相关用法
- Rust Wrapping.is_negative用法及代码示例
- Rust Wrapping.from_le用法及代码示例
- Rust Wrapping.reverse_bits用法及代码示例
- Rust Wrapping.to_be用法及代码示例
- Rust Wrapping.next_power_of_two用法及代码示例
- Rust Wrapping.is_power_of_two用法及代码示例
- Rust Wrapping.abs用法及代码示例
- Rust Wrapping.rotate_right用法及代码示例
- Rust Wrapping.leading_zeros用法及代码示例
- Rust Wrapping.signum用法及代码示例
- Rust Wrapping.trailing_zeros用法及代码示例
- Rust Wrapping.from_be用法及代码示例
- Rust Wrapping.to_le用法及代码示例
- Rust Wrapping.count_zeros用法及代码示例
- Rust Wrapping.swap_bytes用法及代码示例
- Rust Wrapping.count_ones用法及代码示例
- Rust Wrapping.rotate_left用法及代码示例
- Rust Wrapping.is_positive用法及代码示例
- Rust Wrapping.pow用法及代码示例
- Rust Write.write_all用法及代码示例
- Rust Write.write_str用法及代码示例
- Rust Write用法及代码示例
- Rust Write.write_vectored用法及代码示例
- Rust WriterPanicked用法及代码示例
- Rust Write.by_ref用法及代码示例
注:本文由纯净天空筛选整理自rust-lang.org大神的英文原创作品 Struct std::num::Wrapping。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。