本文簡要介紹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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。