Primitive Type usize
1.0.0 ·Expand description
指针大小的无符号整数类型。
该原语的大小是引用内存中任何位置所需要的字节数。 例如,在 32 位目标上,这是 4 个字节,而在 64 位目标上,这是 8 个字节。
Implementations§
source§impl usize
impl usize
sourcepub fn from_str_radix(src: &str, radix: u32) -> Result<Self, ParseIntError>
pub fn from_str_radix(src: &str, radix: u32) -> Result<Self, ParseIntError>
const: 1.32.0 · sourcepub const fn count_ones(self) -> u32
pub const fn count_ones(self) -> u32
const: 1.32.0 · sourcepub const fn count_zeros(self) -> u32
pub const fn count_zeros(self) -> u32
const: 1.32.0 · sourcepub const fn leading_zeros(self) -> u32
pub const fn leading_zeros(self) -> u32
const: 1.32.0 · sourcepub const fn trailing_zeros(self) -> u32
pub const fn trailing_zeros(self) -> u32
1.46.0 (const: 1.46.0) · sourcepub const fn leading_ones(self) -> u32
pub const fn leading_ones(self) -> u32
1.46.0 (const: 1.46.0) · sourcepub const fn trailing_ones(self) -> u32
pub const fn trailing_ones(self) -> u32
const: 1.32.0 · sourcepub const fn rotate_left(self, n: u32) -> Self
pub const fn rotate_left(self, n: u32) -> Self
const: 1.32.0 · sourcepub const fn rotate_right(self, n: u32) -> Self
pub const fn rotate_right(self, n: u32) -> Self
const: 1.32.0 · sourcepub const fn swap_bytes(self) -> Self
pub const fn swap_bytes(self) -> Self
1.37.0 (const: 1.37.0) · sourcepub const fn reverse_bits(self) -> Self
pub const fn reverse_bits(self) -> Self
const: 1.47.0 · sourcepub const fn checked_add(self, rhs: Self) -> Option<Self>
pub const fn checked_add(self, rhs: Self) -> Option<Self>
const: unstable · sourcepub unsafe fn unchecked_add(self, rhs: Self) -> Self
🔬This is a nightly-only experimental API. (unchecked_math
#85122)
pub unsafe fn unchecked_add(self, rhs: Self) -> Self
unchecked_math
#85122)未经检查的整数加法。
假设不会发生溢出,则计算 self + rhs
。
Safety
当以下情况时,这导致未定义的行为
self + rhs > usize::MAX
or self + rhs < usize::MIN
,
即当 checked_add
将返回 None
时。
1.66.0 (const: 1.66.0) · sourcepub const fn checked_add_signed(self, rhs: isize) -> Option<Self>
pub const fn checked_add_signed(self, rhs: isize) -> Option<Self>
const: 1.47.0 · sourcepub const fn checked_sub(self, rhs: Self) -> Option<Self>
pub const fn checked_sub(self, rhs: Self) -> Option<Self>
const: unstable · sourcepub unsafe fn unchecked_sub(self, rhs: Self) -> Self
🔬This is a nightly-only experimental API. (unchecked_math
#85122)
pub unsafe fn unchecked_sub(self, rhs: Self) -> Self
unchecked_math
#85122)未经检查的整数减法。
假设不会发生溢出,则计算 self - rhs
。
Safety
当以下情况时,这导致未定义的行为
self - rhs > usize::MAX
or self - rhs < usize::MIN
,
即当 checked_sub
将返回 None
时。
const: 1.47.0 · sourcepub const fn checked_mul(self, rhs: Self) -> Option<Self>
pub const fn checked_mul(self, rhs: Self) -> Option<Self>
const: unstable · sourcepub unsafe fn unchecked_mul(self, rhs: Self) -> Self
🔬This is a nightly-only experimental API. (unchecked_math
#85122)
pub unsafe fn unchecked_mul(self, rhs: Self) -> Self
unchecked_math
#85122)未经检查的整数乘法。
假设不会发生溢出,则计算 self * rhs
。
Safety
当以下情况时,这导致未定义的行为
self * rhs > usize::MAX
or self * rhs < usize::MIN
,
即当 checked_mul
将返回 None
时。
const: 1.52.0 · sourcepub const fn checked_div(self, rhs: Self) -> Option<Self>
pub const fn checked_div(self, rhs: Self) -> Option<Self>
1.38.0 (const: 1.52.0) · sourcepub const fn checked_div_euclid(self, rhs: Self) -> Option<Self>
pub const fn checked_div_euclid(self, rhs: Self) -> Option<Self>
1.7.0 (const: 1.52.0) · sourcepub const fn checked_rem(self, rhs: Self) -> Option<Self>
pub const fn checked_rem(self, rhs: Self) -> Option<Self>
1.38.0 (const: 1.52.0) · sourcepub const fn checked_rem_euclid(self, rhs: Self) -> Option<Self>
pub const fn checked_rem_euclid(self, rhs: Self) -> Option<Self>
1.67.0 (const: 1.67.0) · sourcepub const fn checked_ilog(self, base: Self) -> Option<u32>
pub const fn checked_ilog(self, base: Self) -> Option<u32>
1.67.0 (const: 1.67.0) · sourcepub const fn checked_ilog2(self) -> Option<u32>
pub const fn checked_ilog2(self) -> Option<u32>
1.67.0 (const: 1.67.0) · sourcepub const fn checked_ilog10(self) -> Option<u32>
pub const fn checked_ilog10(self) -> Option<u32>
1.7.0 (const: 1.47.0) · sourcepub const fn checked_neg(self) -> Option<Self>
pub const fn checked_neg(self) -> Option<Self>
1.7.0 (const: 1.47.0) · sourcepub const fn checked_shl(self, rhs: u32) -> Option<Self>
pub const fn checked_shl(self, rhs: u32) -> Option<Self>
const: unstable · sourcepub unsafe fn unchecked_shl(self, rhs: u32) -> Self
🔬This is a nightly-only experimental API. (unchecked_math
#85122)
pub unsafe fn unchecked_shl(self, rhs: u32) -> Self
unchecked_math
#85122)未检查的左移。
计算 self << rhs
,假设 rhs
小于 self
中的位数。
Safety
如果 rhs
大于或等于 self
中的位数,则会导致未定义的行为,即
当 checked_shl
返回 None
时。
1.7.0 (const: 1.47.0) · sourcepub const fn checked_shr(self, rhs: u32) -> Option<Self>
pub const fn checked_shr(self, rhs: u32) -> Option<Self>
const: unstable · sourcepub unsafe fn unchecked_shr(self, rhs: u32) -> Self
🔬This is a nightly-only experimental API. (unchecked_math
#85122)
pub unsafe fn unchecked_shr(self, rhs: u32) -> Self
unchecked_math
#85122)未检查右移。
计算 self >> rhs
,假设 rhs
小于 self
中的位数。
Safety
如果 rhs
大于或等于 self
中的位数,则会导致未定义的行为,即
当 checked_shr
返回 None
时。
1.34.0 (const: 1.50.0) · sourcepub const fn checked_pow(self, exp: u32) -> Option<Self>
pub const fn checked_pow(self, exp: u32) -> Option<Self>
const: 1.47.0 · sourcepub const fn saturating_add(self, rhs: Self) -> Self
pub const fn saturating_add(self, rhs: Self) -> Self
1.66.0 (const: 1.66.0) · sourcepub const fn saturating_add_signed(self, rhs: isize) -> Self
pub const fn saturating_add_signed(self, rhs: isize) -> Self
const: 1.47.0 · sourcepub const fn saturating_sub(self, rhs: Self) -> Self
pub const fn saturating_sub(self, rhs: Self) -> Self
1.7.0 (const: 1.47.0) · sourcepub const fn saturating_mul(self, rhs: Self) -> Self
pub const fn saturating_mul(self, rhs: Self) -> Self
1.58.0 (const: 1.58.0) · sourcepub const fn saturating_div(self, rhs: Self) -> Self
pub const fn saturating_div(self, rhs: Self) -> Self
1.34.0 (const: 1.50.0) · sourcepub const fn saturating_pow(self, exp: u32) -> Self
pub const fn saturating_pow(self, exp: u32) -> Self
const: 1.32.0 · sourcepub const fn wrapping_add(self, rhs: Self) -> Self
pub const fn wrapping_add(self, rhs: Self) -> Self
1.66.0 (const: 1.66.0) · sourcepub const fn wrapping_add_signed(self, rhs: isize) -> Self
pub const fn wrapping_add_signed(self, rhs: isize) -> Self
const: 1.32.0 · sourcepub const fn wrapping_sub(self, rhs: Self) -> Self
pub const fn wrapping_sub(self, rhs: Self) -> Self
const: 1.32.0 · sourcepub const fn wrapping_mul(self, rhs: Self) -> Self
pub const fn wrapping_mul(self, rhs: Self) -> Self
1.2.0 (const: 1.52.0) · sourcepub const fn wrapping_div(self, rhs: Self) -> Self
pub const fn wrapping_div(self, rhs: Self) -> Self
1.38.0 (const: 1.52.0) · sourcepub const fn wrapping_div_euclid(self, rhs: Self) -> Self
pub const fn wrapping_div_euclid(self, rhs: Self) -> Self
1.2.0 (const: 1.52.0) · sourcepub const fn wrapping_rem(self, rhs: Self) -> Self
pub const fn wrapping_rem(self, rhs: Self) -> Self
1.38.0 (const: 1.52.0) · sourcepub const fn wrapping_rem_euclid(self, rhs: Self) -> Self
pub const fn wrapping_rem_euclid(self, rhs: Self) -> Self
1.2.0 (const: 1.32.0) · sourcepub const fn wrapping_neg(self) -> Self
pub const fn wrapping_neg(self) -> Self
包装 (modular) 取反。
计算 -self
,在类型的边界处回绕。
由于无符号类型没有负的等效项,因此该函数的所有应用程序都将自动换行 (-0
除外)。
对于小于相应有符号类型的最大值的值,结果与强制转换相应有符号值的结果相同。
任何较大的值都等于 MAX + 1 - (val - MAX - 1)
,其中 MAX
是对应的有符号类型的最大值。
Examples
基本用法:
assert_eq!(0_usize.wrapping_neg(), 0);
assert_eq!(usize::MAX.wrapping_neg(), 1);
assert_eq!(13_usize.wrapping_neg(), (!13) + 1);
assert_eq!(42_usize.wrapping_neg(), !(42 - 1));
Run1.2.0 (const: 1.32.0) · sourcepub const fn wrapping_shl(self, rhs: u32) -> Self
pub const fn wrapping_shl(self, rhs: u32) -> Self
无 Panic - 按位左移;
产生 self << mask(rhs)
,其中 mask
删除 rhs
的所有高位,这些高位将导致移位超过该类型的位宽。
注意,这与左旋不同; 环绕左移的 RHS 限于该类型的范围,而不是从 LHS 移出的位返回到另一端。
所有原始整数类型都实现了 rotate_left
函数,而您可能想要的是 rotate_left
函数。
Examples
基本用法:
assert_eq!(1usize.wrapping_shl(7), 128);
assert_eq!(1usize.wrapping_shl(128), 1);
Run1.2.0 (const: 1.32.0) · sourcepub const fn wrapping_shr(self, rhs: u32) -> Self
pub const fn wrapping_shr(self, rhs: u32) -> Self
无 Panic - 按位右移;
产生 self >> mask(rhs)
,其中 mask
删除 rhs
的所有高位,这些高位将导致移位超过该类型的位宽。
注意,这与右旋转不同。换行右移的 RHS 限于类型的范围,而不是从 LHS 移出的位返回到另一端。
所有原始整数类型都实现了 rotate_right
函数,而您可能想要的是 rotate_right
函数。
Examples
基本用法:
assert_eq!(128usize.wrapping_shr(7), 1);
assert_eq!(128usize.wrapping_shr(128), 128);
Run1.34.0 (const: 1.50.0) · sourcepub const fn wrapping_pow(self, exp: u32) -> Self
pub const fn wrapping_pow(self, exp: u32) -> Self
1.7.0 (const: 1.32.0) · sourcepub const fn overflowing_add(self, rhs: Self) -> (Self, bool)
pub const fn overflowing_add(self, rhs: Self) -> (Self, bool)
const: unstable · sourcepub fn carrying_add(self, rhs: Self, carry: bool) -> (Self, bool)
🔬This is a nightly-only experimental API. (bigint_helper_methods
#85532)
pub fn carrying_add(self, rhs: Self, carry: bool) -> (Self, bool)
bigint_helper_methods
#85532)计算 self
+ rhs
+ carry
并返回一个包含总和和输出进位的元组。
对两个整数操作数和一个进位位执行 “ternary addition”,并返回一个输出整数和一个进位位。 这允许将多个加法链接在一起以创建更广泛的加法,并且对于 bignum 加法很有用。
This can be thought of as a 64-bit “full adder”, in the electronics sense.
如果输入进位为假,则此方法等价于 overflowing_add
,输出进位等于溢出标志。
请注意,尽管进位和溢出标志对于无符号整数是相似的,但对于有符号整数它们是不同的。
Examples
#![feature(bigint_helper_methods)]
// 3 MAX (a = 3 × 2^64 + 2^64 - 1)
// + 5 7 (b = 5 × 2^64 + 7)
// ---------
// 9 6 (sum = 9 × 2^64 + 6)
let (a1, a0): (usize, usize) = (3, usize::MAX);
let (b1, b0): (usize, usize) = (5, 7);
let carry0 = false;
let (sum0, carry1) = a0.carrying_add(b0, carry0);
assert_eq!(carry1, true);
let (sum1, carry2) = a1.carrying_add(b1, carry1);
assert_eq!(carry2, false);
assert_eq!((sum1, sum0), (9, 6));
Run1.66.0 (const: 1.66.0) · sourcepub const fn overflowing_add_signed(self, rhs: isize) -> (Self, bool)
pub const fn overflowing_add_signed(self, rhs: isize) -> (Self, bool)
1.7.0 (const: 1.32.0) · sourcepub const fn overflowing_sub(self, rhs: Self) -> (Self, bool)
pub const fn overflowing_sub(self, rhs: Self) -> (Self, bool)
const: unstable · sourcepub fn borrowing_sub(self, rhs: Self, borrow: bool) -> (Self, bool)
🔬This is a nightly-only experimental API. (bigint_helper_methods
#85532)
pub fn borrowing_sub(self, rhs: Self, borrow: bool) -> (Self, bool)
bigint_helper_methods
#85532)计算 self
-rhs
-borrow
并返回一个包含差值和输出借用的元组。
通过从 self
中减去一个整数操作数和一个借用 - in 位来执行 “ternary subtraction”,并返回一个输出整数和一个借用 - out 位。
这允许将多个减法链接在一起以创建更广泛的减法,并且对于 bignum 减法很有用。
Examples
#![feature(bigint_helper_methods)]
// 9 6 (a = 9 × 2^64 + 6)
// - 5 7 (b = 5 × 2^64 + 7)
// ---------
// 3 MAX (diff = 3 × 2^64 + 2^64 - 1)
let (a1, a0): (usize, usize) = (9, 6);
let (b1, b0): (usize, usize) = (5, 7);
let borrow0 = false;
let (diff0, borrow1) = a0.borrowing_sub(b0, borrow0);
assert_eq!(borrow1, true);
let (diff1, borrow2) = a1.borrowing_sub(b1, borrow1);
assert_eq!(borrow2, false);
assert_eq!((diff1, diff0), (3, usize::MAX));
Run1.7.0 (const: 1.32.0) · sourcepub const fn overflowing_mul(self, rhs: Self) -> (Self, bool)
pub const fn overflowing_mul(self, rhs: Self) -> (Self, bool)
1.7.0 (const: 1.52.0) · sourcepub const fn overflowing_div(self, rhs: Self) -> (Self, bool)
pub const fn overflowing_div(self, rhs: Self) -> (Self, bool)
1.38.0 (const: 1.52.0) · sourcepub const fn overflowing_div_euclid(self, rhs: Self) -> (Self, bool)
pub const fn overflowing_div_euclid(self, rhs: Self) -> (Self, bool)
1.7.0 (const: 1.52.0) · sourcepub const fn overflowing_rem(self, rhs: Self) -> (Self, bool)
pub const fn overflowing_rem(self, rhs: Self) -> (Self, bool)
1.38.0 (const: 1.52.0) · sourcepub const fn overflowing_rem_euclid(self, rhs: Self) -> (Self, bool)
pub const fn overflowing_rem_euclid(self, rhs: Self) -> (Self, bool)
1.7.0 (const: 1.32.0) · sourcepub const fn overflowing_neg(self) -> (Self, bool)
pub const fn overflowing_neg(self) -> (Self, bool)
1.7.0 (const: 1.32.0) · sourcepub const fn overflowing_shl(self, rhs: u32) -> (Self, bool)
pub const fn overflowing_shl(self, rhs: u32) -> (Self, bool)
1.7.0 (const: 1.32.0) · sourcepub const fn overflowing_shr(self, rhs: u32) -> (Self, bool)
pub const fn overflowing_shr(self, rhs: u32) -> (Self, bool)
1.34.0 (const: 1.50.0) · sourcepub const fn overflowing_pow(self, exp: u32) -> (Self, bool)
pub const fn overflowing_pow(self, exp: u32) -> (Self, bool)
1.38.0 (const: 1.52.0) · sourcepub const fn div_euclid(self, rhs: Self) -> Self
pub const fn div_euclid(self, rhs: Self) -> Self
1.38.0 (const: 1.52.0) · sourcepub const fn rem_euclid(self, rhs: Self) -> Self
pub const fn rem_euclid(self, rhs: Self) -> Self
sourcepub const fn div_floor(self, rhs: Self) -> Self
🔬This is a nightly-only experimental API. (int_roundings
#88581)
pub const fn div_floor(self, rhs: Self) -> Self
int_roundings
#88581)sourcepub const fn div_ceil(self, rhs: Self) -> Self
🔬This is a nightly-only experimental API. (int_roundings
#88581)
pub const fn div_ceil(self, rhs: Self) -> Self
int_roundings
#88581)sourcepub const fn next_multiple_of(self, rhs: Self) -> Self
🔬This is a nightly-only experimental API. (int_roundings
#88581)
pub const fn next_multiple_of(self, rhs: Self) -> Self
int_roundings
#88581)sourcepub const fn checked_next_multiple_of(self, rhs: Self) -> Option<Self>
🔬This is a nightly-only experimental API. (int_roundings
#88581)
pub const fn checked_next_multiple_of(self, rhs: Self) -> Option<Self>
int_roundings
#88581)计算大于或等于 rhs
倍数的 self
的最小值。
如果 rhs
为零,则返回 None
,否则操作会导致溢出。
Examples
基本用法:
#![feature(int_roundings)]
assert_eq!(16_usize.checked_next_multiple_of(8), Some(16));
assert_eq!(23_usize.checked_next_multiple_of(8), Some(24));
assert_eq!(1_usize.checked_next_multiple_of(0), None);
assert_eq!(usize::MAX.checked_next_multiple_of(2), None);
Runconst: 1.32.0 · sourcepub const fn is_power_of_two(self) -> bool
pub const fn is_power_of_two(self) -> bool
const: 1.50.0 · sourcepub const fn next_power_of_two(self) -> Self
pub const fn next_power_of_two(self) -> Self
const: 1.50.0 · sourcepub const fn checked_next_power_of_two(self) -> Option<Self>
pub const fn checked_next_power_of_two(self) -> Option<Self>
const: unstable · sourcepub fn wrapping_next_power_of_two(self) -> Self
🔬This is a nightly-only experimental API. (wrapping_next_power_of_two
#32463)
pub fn wrapping_next_power_of_two(self) -> Self
wrapping_next_power_of_two
#32463)1.32.0 (const: 1.44.0) · sourcepub const fn to_be_bytes(self) -> [u8; 8]
pub const fn to_be_bytes(self) -> [u8; 8]
1.32.0 (const: 1.44.0) · sourcepub const fn to_le_bytes(self) -> [u8; 8]
pub const fn to_le_bytes(self) -> [u8; 8]
1.32.0 (const: 1.44.0) · sourcepub const fn to_ne_bytes(self) -> [u8; 8]
pub const fn to_ne_bytes(self) -> [u8; 8]
将此整数的内存表示作为本机字节顺序的字节数组返回。
由于使用了目标平台的原生字节序,因此,可移植代码应酌情使用 to_be_bytes
或 to_le_bytes
。
Note: This function returns an array of length 2, 4 or 8 bytes depending on the target pointer size.
Examples
let bytes = 0x1234567890123456usize.to_ne_bytes();
assert_eq!(
bytes,
if cfg!(target_endian = "big") {
[0x12, 0x34, 0x56, 0x78, 0x90, 0x12, 0x34, 0x56]
} else {
[0x56, 0x34, 0x12, 0x90, 0x78, 0x56, 0x34, 0x12]
}
);
Run1.32.0 (const: 1.44.0) · sourcepub const fn from_be_bytes(bytes: [u8; 8]) -> Self
pub const fn from_be_bytes(bytes: [u8; 8]) -> Self
根据其表示形式 (大字节序中的字节数组) 创建一个本地字节序整数值。
Note: This function takes an array of length 2, 4 or 8 bytes depending on the target pointer size.
Examples
let value = usize::from_be_bytes([0x12, 0x34, 0x56, 0x78, 0x90, 0x12, 0x34, 0x56]);
assert_eq!(value, 0x1234567890123456);
Run从切片而不是数组开始时,可以使用容易出错的转换 API:
fn read_be_usize(input: &mut &[u8]) -> usize {
let (int_bytes, rest) = input.split_at(std::mem::size_of::<usize>());
*input = rest;
usize::from_be_bytes(int_bytes.try_into().unwrap())
}
Run1.32.0 (const: 1.44.0) · sourcepub const fn from_le_bytes(bytes: [u8; 8]) -> Self
pub const fn from_le_bytes(bytes: [u8; 8]) -> Self
从它的表示形式以 little endian 的字节数组创建一个本地 endian 整数值。
Note: This function takes an array of length 2, 4 or 8 bytes depending on the target pointer size.
Examples
let value = usize::from_le_bytes([0x56, 0x34, 0x12, 0x90, 0x78, 0x56, 0x34, 0x12]);
assert_eq!(value, 0x1234567890123456);
Run从切片而不是数组开始时,可以使用容易出错的转换 API:
fn read_le_usize(input: &mut &[u8]) -> usize {
let (int_bytes, rest) = input.split_at(std::mem::size_of::<usize>());
*input = rest;
usize::from_le_bytes(int_bytes.try_into().unwrap())
}
Run1.32.0 (const: 1.44.0) · sourcepub const fn from_ne_bytes(bytes: [u8; 8]) -> Self
pub const fn from_ne_bytes(bytes: [u8; 8]) -> Self
从其内存表示形式以原生字节序形式创建一个原生字节序整数值。
由于使用了目标平台的原生字节序,因此可移植代码可能希望酌情使用 from_be_bytes
或 from_le_bytes
。
Note: This function takes an array of length 2, 4 or 8 bytes depending on the target pointer size.
Examples
let value = usize::from_ne_bytes(if cfg!(target_endian = "big") {
[0x12, 0x34, 0x56, 0x78, 0x90, 0x12, 0x34, 0x56]
} else {
[0x56, 0x34, 0x12, 0x90, 0x78, 0x56, 0x34, 0x12]
});
assert_eq!(value, 0x1234567890123456);
Run从切片而不是数组开始时,可以使用容易出错的转换 API:
fn read_ne_usize(input: &mut &[u8]) -> usize {
let (int_bytes, rest) = input.split_at(std::mem::size_of::<usize>());
*input = rest;
usize::from_ne_bytes(int_bytes.try_into().unwrap())
}
Runconst: 1.32.0 · sourcepub const fn min_value() -> Self
👎Deprecating in a future Rust version: replaced by the MIN
associated constant on this type
pub const fn min_value() -> Self
MIN
associated constant on this type新代码应优先使用
usize::MIN
instead.
返回此整数类型可以表示的最小值。
const: 1.32.0 · sourcepub const fn max_value() -> Self
👎Deprecating in a future Rust version: replaced by the MAX
associated constant on this type
pub const fn max_value() -> Self
MAX
associated constant on this type新代码应优先使用
usize::MAX
instead.
返回此整数类型可以表示的最大值。
const: unstable · sourcepub fn widening_mul(self, rhs: Self) -> (Self, Self)
🔬This is a nightly-only experimental API. (bigint_helper_methods
#85532)
pub fn widening_mul(self, rhs: Self) -> (Self, Self)
bigint_helper_methods
#85532)计算完整的产品 self * rhs
,没有溢出的可能性。
这将返回结果的低位 (wrapping) 位和高位 (overflow) 位作为两个单独的值,按该顺序。
如果您还需要在宽结果中添加进位,那么您需要 Self::carrying_mul
。
Examples
基本用法:
请注意,此示例在整数类型之间共享。
这就解释了为什么在这里使用 u32
。
#![feature(bigint_helper_methods)]
assert_eq!(5u32.widening_mul(2), (10, 0));
assert_eq!(1_000_000_000u32.widening_mul(10), (1410065408, 2));
Runconst: unstable · sourcepub fn carrying_mul(self, rhs: Self, carry: Self) -> (Self, Self)
🔬This is a nightly-only experimental API. (bigint_helper_methods
#85532)
pub fn carrying_mul(self, rhs: Self, carry: Self) -> (Self, Self)
bigint_helper_methods
#85532)计算 “full multiplication” self * rhs + carry
而不可能溢出。
这将返回结果的低位 (wrapping) 位和高位 (overflow) 位作为两个单独的值,按该顺序。
执行 “long multiplication”,它需要添加额外的量,并且可能返回额外的溢出量。 这允许将多个乘法链接在一起以创建代表更大值的 “大整数”。
如果您不需要 carry
,那么您可以使用 Self::widening_mul
。
Examples
基本用法:
请注意,此示例在整数类型之间共享。
这就解释了为什么在这里使用 u32
。
#![feature(bigint_helper_methods)]
assert_eq!(5u32.carrying_mul(2, 0), (10, 0));
assert_eq!(5u32.carrying_mul(2, 10), (20, 0));
assert_eq!(1_000_000_000u32.carrying_mul(10, 0), (1410065408, 2));
assert_eq!(1_000_000_000u32.carrying_mul(10, 10), (1410065418, 2));
assert_eq!(usize::MAX.carrying_mul(usize::MAX, usize::MAX), (0, usize::MAX));
RunThis is the core operation needed for scalar multiplication when implementing it for wider-than-native types.
#![feature(bigint_helper_methods)]
fn scalar_mul_eq(little_endian_digits: &mut Vec<u16>, multiplicand: u16) {
let mut carry = 0;
对于 little_endian_digits.iter_mut() { (*d, carry) = d.carrying_mul(multiplicand, carry); } 中的 d 如果进位 != 0 {
little_endian_digits.push(carry);
}
}
let mut v = vec![10, 20];
scalar_mul_eq(&mut v, 3);
assert_eq!(v, [30, 60]);
assert_eq!(0x87654321_u64 * 0xFEED, 0x86D3D159E38D);
let mut v = vec![0x4321, 0x8765];
scalar_mul_eq(&mut v, 0xFEED);
assert_eq!(v, [0xE38D, 0xD159, 0x86D3]);
RunIf carry
is zero, this is similar to overflowing_mul
,
except that it gives the value of the overflow instead of just whether one happened:
#![feature(bigint_helper_methods)]
let r = u8::carrying_mul(7, 13, 0);
assert_eq!((r.0, r.1 != 0), u8::overflowing_mul(7, 13));
let r = u8::carrying_mul(13, 42, 0);
assert_eq!((r.0, r.1 != 0), u8::overflowing_mul(13, 42));
RunThe value of the first field in the returned tuple matches what you’d get
by combining the wrapping_mul
and
wrapping_add
methods:
#![feature(bigint_helper_methods)]
assert_eq!(
789_u16.carrying_mul(456, 123).0, 789_u16.wrapping_mul(456).wrapping_add(123), );
RunTrait Implementations§
1.22.0 · source§impl AddAssign<&usize> for Saturating<usize>
impl AddAssign<&usize> for Saturating<usize>
source§fn add_assign(&mut self, other: &usize)
fn add_assign(&mut self, other: &usize)
+=
操作。 Read more1.22.0 · source§impl AddAssign<&usize> for Wrapping<usize>
impl AddAssign<&usize> for Wrapping<usize>
source§fn add_assign(&mut self, other: &usize)
fn add_assign(&mut self, other: &usize)
+=
操作。 Read more1.22.0 · source§impl AddAssign<&usize> for usize
impl AddAssign<&usize> for usize
source§fn add_assign(&mut self, other: &usize)
fn add_assign(&mut self, other: &usize)
+=
操作。 Read moresource§impl AddAssign<usize> for Saturating<usize>
impl AddAssign<usize> for Saturating<usize>
source§fn add_assign(&mut self, other: usize)
fn add_assign(&mut self, other: usize)
+=
操作。 Read more1.60.0 · source§impl AddAssign<usize> for Wrapping<usize>
impl AddAssign<usize> for Wrapping<usize>
source§fn add_assign(&mut self, other: usize)
fn add_assign(&mut self, other: usize)
+=
操作。 Read more1.8.0 · source§impl AddAssign<usize> for usize
impl AddAssign<usize> for usize
source§fn add_assign(&mut self, other: usize)
fn add_assign(&mut self, other: usize)
+=
操作。 Read more1.22.0 · source§impl BitAndAssign<&usize> for Saturating<usize>
impl BitAndAssign<&usize> for Saturating<usize>
source§fn bitand_assign(&mut self, other: &usize)
fn bitand_assign(&mut self, other: &usize)
&=
操作。 Read more1.22.0 · source§impl BitAndAssign<&usize> for Wrapping<usize>
impl BitAndAssign<&usize> for Wrapping<usize>
source§fn bitand_assign(&mut self, other: &usize)
fn bitand_assign(&mut self, other: &usize)
&=
操作。 Read more1.22.0 · source§impl BitAndAssign<&usize> for usize
impl BitAndAssign<&usize> for usize
source§fn bitand_assign(&mut self, other: &usize)
fn bitand_assign(&mut self, other: &usize)
&=
操作。 Read moresource§impl BitAndAssign<usize> for Saturating<usize>
impl BitAndAssign<usize> for Saturating<usize>
source§fn bitand_assign(&mut self, other: usize)
fn bitand_assign(&mut self, other: usize)
&=
操作。 Read more1.60.0 · source§impl BitAndAssign<usize> for Wrapping<usize>
impl BitAndAssign<usize> for Wrapping<usize>
source§fn bitand_assign(&mut self, other: usize)
fn bitand_assign(&mut self, other: usize)
&=
操作。 Read more1.8.0 · source§impl BitAndAssign<usize> for usize
impl BitAndAssign<usize> for usize
source§fn bitand_assign(&mut self, other: usize)
fn bitand_assign(&mut self, other: usize)
&=
操作。 Read more1.45.0 · source§impl BitOr<NonZeroUsize> for usize
impl BitOr<NonZeroUsize> for usize
§type Output = NonZeroUsize
type Output = NonZeroUsize
|
运算符后的结果类型。1.45.0 · source§impl BitOr<usize> for NonZeroUsize
impl BitOr<usize> for NonZeroUsize
1.22.0 · source§impl BitOrAssign<&usize> for Saturating<usize>
impl BitOrAssign<&usize> for Saturating<usize>
source§fn bitor_assign(&mut self, other: &usize)
fn bitor_assign(&mut self, other: &usize)
|=
操作。 Read more1.22.0 · source§impl BitOrAssign<&usize> for Wrapping<usize>
impl BitOrAssign<&usize> for Wrapping<usize>
source§fn bitor_assign(&mut self, other: &usize)
fn bitor_assign(&mut self, other: &usize)
|=
操作。 Read more1.22.0 · source§impl BitOrAssign<&usize> for usize
impl BitOrAssign<&usize> for usize
source§fn bitor_assign(&mut self, other: &usize)
fn bitor_assign(&mut self, other: &usize)
|=
操作。 Read more1.45.0 · source§impl BitOrAssign<usize> for NonZeroUsize
impl BitOrAssign<usize> for NonZeroUsize
source§fn bitor_assign(&mut self, rhs: usize)
fn bitor_assign(&mut self, rhs: usize)
|=
操作。 Read moresource§impl BitOrAssign<usize> for Saturating<usize>
impl BitOrAssign<usize> for Saturating<usize>
source§fn bitor_assign(&mut self, other: usize)
fn bitor_assign(&mut self, other: usize)
|=
操作。 Read more1.60.0 · source§impl BitOrAssign<usize> for Wrapping<usize>
impl BitOrAssign<usize> for Wrapping<usize>
source§fn bitor_assign(&mut self, other: usize)
fn bitor_assign(&mut self, other: usize)
|=
操作。 Read more1.8.0 · source§impl BitOrAssign<usize> for usize
impl BitOrAssign<usize> for usize
source§fn bitor_assign(&mut self, other: usize)
fn bitor_assign(&mut self, other: usize)
|=
操作。 Read more1.22.0 · source§impl BitXorAssign<&usize> for Saturating<usize>
impl BitXorAssign<&usize> for Saturating<usize>
source§fn bitxor_assign(&mut self, other: &usize)
fn bitxor_assign(&mut self, other: &usize)
^=
操作。 Read more1.22.0 · source§impl BitXorAssign<&usize> for Wrapping<usize>
impl BitXorAssign<&usize> for Wrapping<usize>
source§fn bitxor_assign(&mut self, other: &usize)
fn bitxor_assign(&mut self, other: &usize)
^=
操作。 Read more1.22.0 · source§impl BitXorAssign<&usize> for usize
impl BitXorAssign<&usize> for usize
source§fn bitxor_assign(&mut self, other: &usize)
fn bitxor_assign(&mut self, other: &usize)
^=
操作。 Read moresource§impl BitXorAssign<usize> for Saturating<usize>
impl BitXorAssign<usize> for Saturating<usize>
source§fn bitxor_assign(&mut self, other: usize)
fn bitxor_assign(&mut self, other: usize)
^=
操作。 Read more1.60.0 · source§impl BitXorAssign<usize> for Wrapping<usize>
impl BitXorAssign<usize> for Wrapping<usize>
source§fn bitxor_assign(&mut self, other: usize)
fn bitxor_assign(&mut self, other: usize)
^=
操作。 Read more1.8.0 · source§impl BitXorAssign<usize> for usize
impl BitXorAssign<usize> for usize
source§fn bitxor_assign(&mut self, other: usize)
fn bitxor_assign(&mut self, other: usize)
^=
操作。 Read more1.51.0 · source§impl Div<NonZeroUsize> for usize
impl Div<NonZeroUsize> for usize
1.22.0 · source§impl DivAssign<&usize> for Saturating<usize>
impl DivAssign<&usize> for Saturating<usize>
source§fn div_assign(&mut self, other: &usize)
fn div_assign(&mut self, other: &usize)
/=
操作。 Read more1.22.0 · source§impl DivAssign<&usize> for Wrapping<usize>
impl DivAssign<&usize> for Wrapping<usize>
source§fn div_assign(&mut self, other: &usize)
fn div_assign(&mut self, other: &usize)
/=
操作。 Read more1.22.0 · source§impl DivAssign<&usize> for usize
impl DivAssign<&usize> for usize
source§fn div_assign(&mut self, other: &usize)
fn div_assign(&mut self, other: &usize)
/=
操作。 Read moresource§impl DivAssign<usize> for Saturating<usize>
impl DivAssign<usize> for Saturating<usize>
source§fn div_assign(&mut self, other: usize)
fn div_assign(&mut self, other: usize)
/=
操作。 Read more1.60.0 · source§impl DivAssign<usize> for Wrapping<usize>
impl DivAssign<usize> for Wrapping<usize>
source§fn div_assign(&mut self, other: usize)
fn div_assign(&mut self, other: usize)
/=
操作。 Read more1.8.0 · source§impl DivAssign<usize> for usize
impl DivAssign<usize> for usize
source§fn div_assign(&mut self, other: usize)
fn div_assign(&mut self, other: usize)
/=
操作。 Read more1.31.0 · source§impl From<NonZeroUsize> for usize
impl From<NonZeroUsize> for usize
source§fn from(nonzero: NonZeroUsize) -> Self
fn from(nonzero: NonZeroUsize) -> Self
Converts a NonZeroUsize
into an usize
1.23.0 · source§impl From<usize> for AtomicUsize
impl From<usize> for AtomicUsize
1.22.0 · source§impl MulAssign<&usize> for Saturating<usize>
impl MulAssign<&usize> for Saturating<usize>
source§fn mul_assign(&mut self, other: &usize)
fn mul_assign(&mut self, other: &usize)
*=
操作。 Read more1.22.0 · source§impl MulAssign<&usize> for Wrapping<usize>
impl MulAssign<&usize> for Wrapping<usize>
source§fn mul_assign(&mut self, other: &usize)
fn mul_assign(&mut self, other: &usize)
*=
操作。 Read more1.22.0 · source§impl MulAssign<&usize> for usize
impl MulAssign<&usize> for usize
source§fn mul_assign(&mut self, other: &usize)
fn mul_assign(&mut self, other: &usize)
*=
操作。 Read moresource§impl MulAssign<usize> for Saturating<usize>
impl MulAssign<usize> for Saturating<usize>
source§fn mul_assign(&mut self, other: usize)
fn mul_assign(&mut self, other: usize)
*=
操作。 Read more1.60.0 · source§impl MulAssign<usize> for Wrapping<usize>
impl MulAssign<usize> for Wrapping<usize>
source§fn mul_assign(&mut self, other: usize)
fn mul_assign(&mut self, other: usize)
*=
操作。 Read more1.8.0 · source§impl MulAssign<usize> for usize
impl MulAssign<usize> for usize
source§fn mul_assign(&mut self, other: usize)
fn mul_assign(&mut self, other: usize)
*=
操作。 Read moresource§impl PartialOrd<usize> for usize
impl PartialOrd<usize> for usize
1.51.0 · source§impl Rem<NonZeroUsize> for usize
impl Rem<NonZeroUsize> for usize
1.22.0 · source§impl RemAssign<&usize> for Saturating<usize>
impl RemAssign<&usize> for Saturating<usize>
source§fn rem_assign(&mut self, other: &usize)
fn rem_assign(&mut self, other: &usize)
%=
操作。 Read more1.22.0 · source§impl RemAssign<&usize> for Wrapping<usize>
impl RemAssign<&usize> for Wrapping<usize>
source§fn rem_assign(&mut self, other: &usize)
fn rem_assign(&mut self, other: &usize)
%=
操作。 Read more1.22.0 · source§impl RemAssign<&usize> for usize
impl RemAssign<&usize> for usize
source§fn rem_assign(&mut self, other: &usize)
fn rem_assign(&mut self, other: &usize)
%=
操作。 Read moresource§impl RemAssign<usize> for Saturating<usize>
impl RemAssign<usize> for Saturating<usize>
source§fn rem_assign(&mut self, other: usize)
fn rem_assign(&mut self, other: usize)
%=
操作。 Read more1.60.0 · source§impl RemAssign<usize> for Wrapping<usize>
impl RemAssign<usize> for Wrapping<usize>
source§fn rem_assign(&mut self, other: usize)
fn rem_assign(&mut self, other: usize)
%=
操作。 Read more1.8.0 · source§impl RemAssign<usize> for usize
impl RemAssign<usize> for usize
source§fn rem_assign(&mut self, other: usize)
fn rem_assign(&mut self, other: usize)
%=
操作。 Read more1.22.0 · source§impl ShlAssign<&i128> for usize
impl ShlAssign<&i128> for usize
source§fn shl_assign(&mut self, other: &i128)
fn shl_assign(&mut self, other: &i128)
<<=
操作。 Read more1.22.0 · source§impl ShlAssign<&i16> for usize
impl ShlAssign<&i16> for usize
source§fn shl_assign(&mut self, other: &i16)
fn shl_assign(&mut self, other: &i16)
<<=
操作。 Read more1.22.0 · source§impl ShlAssign<&i32> for usize
impl ShlAssign<&i32> for usize
source§fn shl_assign(&mut self, other: &i32)
fn shl_assign(&mut self, other: &i32)
<<=
操作。 Read more1.22.0 · source§impl ShlAssign<&i64> for usize
impl ShlAssign<&i64> for usize
source§fn shl_assign(&mut self, other: &i64)
fn shl_assign(&mut self, other: &i64)
<<=
操作。 Read more1.22.0 · source§impl ShlAssign<&i8> for usize
impl ShlAssign<&i8> for usize
source§fn shl_assign(&mut self, other: &i8)
fn shl_assign(&mut self, other: &i8)
<<=
操作。 Read more1.22.0 · source§impl ShlAssign<&isize> for usize
impl ShlAssign<&isize> for usize
source§fn shl_assign(&mut self, other: &isize)
fn shl_assign(&mut self, other: &isize)
<<=
操作。 Read more1.22.0 · source§impl ShlAssign<&u128> for usize
impl ShlAssign<&u128> for usize
source§fn shl_assign(&mut self, other: &u128)
fn shl_assign(&mut self, other: &u128)
<<=
操作。 Read more1.22.0 · source§impl ShlAssign<&u16> for usize
impl ShlAssign<&u16> for usize
source§fn shl_assign(&mut self, other: &u16)
fn shl_assign(&mut self, other: &u16)
<<=
操作。 Read more1.22.0 · source§impl ShlAssign<&u32> for usize
impl ShlAssign<&u32> for usize
source§fn shl_assign(&mut self, other: &u32)
fn shl_assign(&mut self, other: &u32)
<<=
操作。 Read more1.22.0 · source§impl ShlAssign<&u64> for usize
impl ShlAssign<&u64> for usize
source§fn shl_assign(&mut self, other: &u64)
fn shl_assign(&mut self, other: &u64)
<<=
操作。 Read more1.22.0 · source§impl ShlAssign<&u8> for usize
impl ShlAssign<&u8> for usize
source§fn shl_assign(&mut self, other: &u8)
fn shl_assign(&mut self, other: &u8)
<<=
操作。 Read more1.22.0 · source§impl ShlAssign<&usize> for Saturating<i128>
impl ShlAssign<&usize> for Saturating<i128>
source§fn shl_assign(&mut self, other: &usize)
fn shl_assign(&mut self, other: &usize)
<<=
操作。 Read more1.22.0 · source§impl ShlAssign<&usize> for Saturating<i16>
impl ShlAssign<&usize> for Saturating<i16>
source§fn shl_assign(&mut self, other: &usize)
fn shl_assign(&mut self, other: &usize)
<<=
操作。 Read more1.22.0 · source§impl ShlAssign<&usize> for Saturating<i32>
impl ShlAssign<&usize> for Saturating<i32>
source§fn shl_assign(&mut self, other: &usize)
fn shl_assign(&mut self, other: &usize)
<<=
操作。 Read more1.22.0 · source§impl ShlAssign<&usize> for Saturating<i64>
impl ShlAssign<&usize> for Saturating<i64>
source§fn shl_assign(&mut self, other: &usize)
fn shl_assign(&mut self, other: &usize)
<<=
操作。 Read more1.22.0 · source§impl ShlAssign<&usize> for Saturating<i8>
impl ShlAssign<&usize> for Saturating<i8>
source§fn shl_assign(&mut self, other: &usize)
fn shl_assign(&mut self, other: &usize)
<<=
操作。 Read more1.22.0 · source§impl ShlAssign<&usize> for Saturating<isize>
impl ShlAssign<&usize> for Saturating<isize>
source§fn shl_assign(&mut self, other: &usize)
fn shl_assign(&mut self, other: &usize)
<<=
操作。 Read more1.22.0 · source§impl ShlAssign<&usize> for Saturating<u128>
impl ShlAssign<&usize> for Saturating<u128>
source§fn shl_assign(&mut self, other: &usize)
fn shl_assign(&mut self, other: &usize)
<<=
操作。 Read more1.22.0 · source§impl ShlAssign<&usize> for Saturating<u16>
impl ShlAssign<&usize> for Saturating<u16>
source§fn shl_assign(&mut self, other: &usize)
fn shl_assign(&mut self, other: &usize)
<<=
操作。 Read more1.22.0 · source§impl ShlAssign<&usize> for Saturating<u32>
impl ShlAssign<&usize> for Saturating<u32>
source§fn shl_assign(&mut self, other: &usize)
fn shl_assign(&mut self, other: &usize)
<<=
操作。 Read more1.22.0 · source§impl ShlAssign<&usize> for Saturating<u64>
impl ShlAssign<&usize> for Saturating<u64>
source§fn shl_assign(&mut self, other: &usize)
fn shl_assign(&mut self, other: &usize)
<<=
操作。 Read more1.22.0 · source§impl ShlAssign<&usize> for Saturating<u8>
impl ShlAssign<&usize> for Saturating<u8>
source§fn shl_assign(&mut self, other: &usize)
fn shl_assign(&mut self, other: &usize)
<<=
操作。 Read more1.22.0 · source§impl ShlAssign<&usize> for Saturating<usize>
impl ShlAssign<&usize> for Saturating<usize>
source§fn shl_assign(&mut self, other: &usize)
fn shl_assign(&mut self, other: &usize)
<<=
操作。 Read more1.22.0 · source§impl ShlAssign<&usize> for Wrapping<i128>
impl ShlAssign<&usize> for Wrapping<i128>
source§fn shl_assign(&mut self, other: &usize)
fn shl_assign(&mut self, other: &usize)
<<=
操作。 Read more1.22.0 · source§impl ShlAssign<&usize> for Wrapping<i16>
impl ShlAssign<&usize> for Wrapping<i16>
source§fn shl_assign(&mut self, other: &usize)
fn shl_assign(&mut self, other: &usize)
<<=
操作。 Read more1.22.0 · source§impl ShlAssign<&usize> for Wrapping<i32>
impl ShlAssign<&usize> for Wrapping<i32>
source§fn shl_assign(&mut self, other: &usize)
fn shl_assign(&mut self, other: &usize)
<<=
操作。 Read more1.22.0 · source§impl ShlAssign<&usize> for Wrapping<i64>
impl ShlAssign<&usize> for Wrapping<i64>
source§fn shl_assign(&mut self, other: &usize)
fn shl_assign(&mut self, other: &usize)
<<=
操作。 Read more1.22.0 · source§impl ShlAssign<&usize> for Wrapping<i8>
impl ShlAssign<&usize> for Wrapping<i8>
source§fn shl_assign(&mut self, other: &usize)
fn shl_assign(&mut self, other: &usize)
<<=
操作。 Read more1.22.0 · source§impl ShlAssign<&usize> for Wrapping<isize>
impl ShlAssign<&usize> for Wrapping<isize>
source§fn shl_assign(&mut self, other: &usize)
fn shl_assign(&mut self, other: &usize)
<<=
操作。 Read more1.22.0 · source§impl ShlAssign<&usize> for Wrapping<u128>
impl ShlAssign<&usize> for Wrapping<u128>
source§fn shl_assign(&mut self, other: &usize)
fn shl_assign(&mut self, other: &usize)
<<=
操作。 Read more1.22.0 · source§impl ShlAssign<&usize> for Wrapping<u16>
impl ShlAssign<&usize> for Wrapping<u16>
source§fn shl_assign(&mut self, other: &usize)
fn shl_assign(&mut self, other: &usize)
<<=
操作。 Read more1.22.0 · source§impl ShlAssign<&usize> for Wrapping<u32>
impl ShlAssign<&usize> for Wrapping<u32>
source§fn shl_assign(&mut self, other: &usize)
fn shl_assign(&mut self, other: &usize)
<<=
操作。 Read more1.22.0 · source§impl ShlAssign<&usize> for Wrapping<u64>
impl ShlAssign<&usize> for Wrapping<u64>
source§fn shl_assign(&mut self, other: &usize)
fn shl_assign(&mut self, other: &usize)
<<=
操作。 Read more1.22.0 · source§impl ShlAssign<&usize> for Wrapping<u8>
impl ShlAssign<&usize> for Wrapping<u8>
source§fn shl_assign(&mut self, other: &usize)
fn shl_assign(&mut self, other: &usize)
<<=
操作。 Read more1.22.0 · source§impl ShlAssign<&usize> for Wrapping<usize>
impl ShlAssign<&usize> for Wrapping<usize>
source§fn shl_assign(&mut self, other: &usize)
fn shl_assign(&mut self, other: &usize)
<<=
操作。 Read more1.22.0 · source§impl ShlAssign<&usize> for i128
impl ShlAssign<&usize> for i128
source§fn shl_assign(&mut self, other: &usize)
fn shl_assign(&mut self, other: &usize)
<<=
操作。 Read more1.22.0 · source§impl ShlAssign<&usize> for i16
impl ShlAssign<&usize> for i16
source§fn shl_assign(&mut self, other: &usize)
fn shl_assign(&mut self, other: &usize)
<<=
操作。 Read more1.22.0 · source§impl ShlAssign<&usize> for i32
impl ShlAssign<&usize> for i32
source§fn shl_assign(&mut self, other: &usize)
fn shl_assign(&mut self, other: &usize)
<<=
操作。 Read more1.22.0 · source§impl ShlAssign<&usize> for i64
impl ShlAssign<&usize> for i64
source§fn shl_assign(&mut self, other: &usize)
fn shl_assign(&mut self, other: &usize)
<<=
操作。 Read more1.22.0 · source§impl ShlAssign<&usize> for i8
impl ShlAssign<&usize> for i8
source§fn shl_assign(&mut self, other: &usize)
fn shl_assign(&mut self, other: &usize)
<<=
操作。 Read more1.22.0 · source§impl ShlAssign<&usize> for isize
impl ShlAssign<&usize> for isize
source§fn shl_assign(&mut self, other: &usize)
fn shl_assign(&mut self, other: &usize)
<<=
操作。 Read more1.22.0 · source§impl ShlAssign<&usize> for u128
impl ShlAssign<&usize> for u128
source§fn shl_assign(&mut self, other: &usize)
fn shl_assign(&mut self, other: &usize)
<<=
操作。 Read more1.22.0 · source§impl ShlAssign<&usize> for u16
impl ShlAssign<&usize> for u16
source§fn shl_assign(&mut self, other: &usize)
fn shl_assign(&mut self, other: &usize)
<<=
操作。 Read more1.22.0 · source§impl ShlAssign<&usize> for u32
impl ShlAssign<&usize> for u32
source§fn shl_assign(&mut self, other: &usize)
fn shl_assign(&mut self, other: &usize)
<<=
操作。 Read more1.22.0 · source§impl ShlAssign<&usize> for u64
impl ShlAssign<&usize> for u64
source§fn shl_assign(&mut self, other: &usize)
fn shl_assign(&mut self, other: &usize)
<<=
操作。 Read more1.22.0 · source§impl ShlAssign<&usize> for u8
impl ShlAssign<&usize> for u8
source§fn shl_assign(&mut self, other: &usize)
fn shl_assign(&mut self, other: &usize)
<<=
操作。 Read more1.22.0 · source§impl ShlAssign<&usize> for usize
impl ShlAssign<&usize> for usize
source§fn shl_assign(&mut self, other: &usize)
fn shl_assign(&mut self, other: &usize)
<<=
操作。 Read more1.8.0 · source§impl ShlAssign<i128> for usize
impl ShlAssign<i128> for usize
source§fn shl_assign(&mut self, other: i128)
fn shl_assign(&mut self, other: i128)
<<=
操作。 Read more1.8.0 · source§impl ShlAssign<i16> for usize
impl ShlAssign<i16> for usize
source§fn shl_assign(&mut self, other: i16)
fn shl_assign(&mut self, other: i16)
<<=
操作。 Read more1.8.0 · source§impl ShlAssign<i32> for usize
impl ShlAssign<i32> for usize
source§fn shl_assign(&mut self, other: i32)
fn shl_assign(&mut self, other: i32)
<<=
操作。 Read more1.8.0 · source§impl ShlAssign<i64> for usize
impl ShlAssign<i64> for usize
source§fn shl_assign(&mut self, other: i64)
fn shl_assign(&mut self, other: i64)
<<=
操作。 Read more1.8.0 · source§impl ShlAssign<i8> for usize
impl ShlAssign<i8> for usize
source§fn shl_assign(&mut self, other: i8)
fn shl_assign(&mut self, other: i8)
<<=
操作。 Read more1.8.0 · source§impl ShlAssign<isize> for usize
impl ShlAssign<isize> for usize
source§fn shl_assign(&mut self, other: isize)
fn shl_assign(&mut self, other: isize)
<<=
操作。 Read more1.8.0 · source§impl ShlAssign<u128> for usize
impl ShlAssign<u128> for usize
source§fn shl_assign(&mut self, other: u128)
fn shl_assign(&mut self, other: u128)
<<=
操作。 Read more1.8.0 · source§impl ShlAssign<u16> for usize
impl ShlAssign<u16> for usize
source§fn shl_assign(&mut self, other: u16)
fn shl_assign(&mut self, other: u16)
<<=
操作。 Read more1.8.0 · source§impl ShlAssign<u32> for usize
impl ShlAssign<u32> for usize
source§fn shl_assign(&mut self, other: u32)
fn shl_assign(&mut self, other: u32)
<<=
操作。 Read more1.8.0 · source§impl ShlAssign<u64> for usize
impl ShlAssign<u64> for usize
source§fn shl_assign(&mut self, other: u64)
fn shl_assign(&mut self, other: u64)
<<=
操作。 Read more1.8.0 · source§impl ShlAssign<u8> for usize
impl ShlAssign<u8> for usize
source§fn shl_assign(&mut self, other: u8)
fn shl_assign(&mut self, other: u8)
<<=
操作。 Read moresource§impl ShlAssign<usize> for Saturating<i128>
impl ShlAssign<usize> for Saturating<i128>
source§fn shl_assign(&mut self, other: usize)
fn shl_assign(&mut self, other: usize)
<<=
操作。 Read moresource§impl ShlAssign<usize> for Saturating<i16>
impl ShlAssign<usize> for Saturating<i16>
source§fn shl_assign(&mut self, other: usize)
fn shl_assign(&mut self, other: usize)
<<=
操作。 Read moresource§impl ShlAssign<usize> for Saturating<i32>
impl ShlAssign<usize> for Saturating<i32>
source§fn shl_assign(&mut self, other: usize)
fn shl_assign(&mut self, other: usize)
<<=
操作。 Read moresource§impl ShlAssign<usize> for Saturating<i64>
impl ShlAssign<usize> for Saturating<i64>
source§fn shl_assign(&mut self, other: usize)
fn shl_assign(&mut self, other: usize)
<<=
操作。 Read moresource§impl ShlAssign<usize> for Saturating<i8>
impl ShlAssign<usize> for Saturating<i8>
source§fn shl_assign(&mut self, other: usize)
fn shl_assign(&mut self, other: usize)
<<=
操作。 Read moresource§impl ShlAssign<usize> for Saturating<isize>
impl ShlAssign<usize> for Saturating<isize>
source§fn shl_assign(&mut self, other: usize)
fn shl_assign(&mut self, other: usize)
<<=
操作。 Read moresource§impl ShlAssign<usize> for Saturating<u128>
impl ShlAssign<usize> for Saturating<u128>
source§fn shl_assign(&mut self, other: usize)
fn shl_assign(&mut self, other: usize)
<<=
操作。 Read moresource§impl ShlAssign<usize> for Saturating<u16>
impl ShlAssign<usize> for Saturating<u16>
source§fn shl_assign(&mut self, other: usize)
fn shl_assign(&mut self, other: usize)
<<=
操作。 Read moresource§impl ShlAssign<usize> for Saturating<u32>
impl ShlAssign<usize> for Saturating<u32>
source§fn shl_assign(&mut self, other: usize)
fn shl_assign(&mut self, other: usize)
<<=
操作。 Read moresource§impl ShlAssign<usize> for Saturating<u64>
impl ShlAssign<usize> for Saturating<u64>
source§fn shl_assign(&mut self, other: usize)
fn shl_assign(&mut self, other: usize)
<<=
操作。 Read moresource§impl ShlAssign<usize> for Saturating<u8>
impl ShlAssign<usize> for Saturating<u8>
source§fn shl_assign(&mut self, other: usize)
fn shl_assign(&mut self, other: usize)
<<=
操作。 Read moresource§impl ShlAssign<usize> for Saturating<usize>
impl ShlAssign<usize> for Saturating<usize>
source§fn shl_assign(&mut self, other: usize)
fn shl_assign(&mut self, other: usize)
<<=
操作。 Read more1.8.0 · source§impl ShlAssign<usize> for Wrapping<i128>
impl ShlAssign<usize> for Wrapping<i128>
source§fn shl_assign(&mut self, other: usize)
fn shl_assign(&mut self, other: usize)
<<=
操作。 Read more1.8.0 · source§impl ShlAssign<usize> for Wrapping<i16>
impl ShlAssign<usize> for Wrapping<i16>
source§fn shl_assign(&mut self, other: usize)
fn shl_assign(&mut self, other: usize)
<<=
操作。 Read more1.8.0 · source§impl ShlAssign<usize> for Wrapping<i32>
impl ShlAssign<usize> for Wrapping<i32>
source§fn shl_assign(&mut self, other: usize)
fn shl_assign(&mut self, other: usize)
<<=
操作。 Read more1.8.0 · source§impl ShlAssign<usize> for Wrapping<i64>
impl ShlAssign<usize> for Wrapping<i64>
source§fn shl_assign(&mut self, other: usize)
fn shl_assign(&mut self, other: usize)
<<=
操作。 Read more1.8.0 · source§impl ShlAssign<usize> for Wrapping<i8>
impl ShlAssign<usize> for Wrapping<i8>
source§fn shl_assign(&mut self, other: usize)
fn shl_assign(&mut self, other: usize)
<<=
操作。 Read more1.8.0 · source§impl ShlAssign<usize> for Wrapping<isize>
impl ShlAssign<usize> for Wrapping<isize>
source§fn shl_assign(&mut self, other: usize)
fn shl_assign(&mut self, other: usize)
<<=
操作。 Read more1.8.0 · source§impl ShlAssign<usize> for Wrapping<u128>
impl ShlAssign<usize> for Wrapping<u128>
source§fn shl_assign(&mut self, other: usize)
fn shl_assign(&mut self, other: usize)
<<=
操作。 Read more1.8.0 · source§impl ShlAssign<usize> for Wrapping<u16>
impl ShlAssign<usize> for Wrapping<u16>
source§fn shl_assign(&mut self, other: usize)
fn shl_assign(&mut self, other: usize)
<<=
操作。 Read more1.8.0 · source§impl ShlAssign<usize> for Wrapping<u32>
impl ShlAssign<usize> for Wrapping<u32>
source§fn shl_assign(&mut self, other: usize)
fn shl_assign(&mut self, other: usize)
<<=
操作。 Read more1.8.0 · source§impl ShlAssign<usize> for Wrapping<u64>
impl ShlAssign<usize> for Wrapping<u64>
source§fn shl_assign(&mut self, other: usize)
fn shl_assign(&mut self, other: usize)
<<=
操作。 Read more1.8.0 · source§impl ShlAssign<usize> for Wrapping<u8>
impl ShlAssign<usize> for Wrapping<u8>
source§fn shl_assign(&mut self, other: usize)
fn shl_assign(&mut self, other: usize)
<<=
操作。 Read more1.8.0 · source§impl ShlAssign<usize> for Wrapping<usize>
impl ShlAssign<usize> for Wrapping<usize>
source§fn shl_assign(&mut self, other: usize)
fn shl_assign(&mut self, other: usize)
<<=
操作。 Read more1.8.0 · source§impl ShlAssign<usize> for i128
impl ShlAssign<usize> for i128
source§fn shl_assign(&mut self, other: usize)
fn shl_assign(&mut self, other: usize)
<<=
操作。 Read more1.8.0 · source§impl ShlAssign<usize> for i16
impl ShlAssign<usize> for i16
source§fn shl_assign(&mut self, other: usize)
fn shl_assign(&mut self, other: usize)
<<=
操作。 Read more1.8.0 · source§impl ShlAssign<usize> for i32
impl ShlAssign<usize> for i32
source§fn shl_assign(&mut self, other: usize)
fn shl_assign(&mut self, other: usize)
<<=
操作。 Read more1.8.0 · source§impl ShlAssign<usize> for i64
impl ShlAssign<usize> for i64
source§fn shl_assign(&mut self, other: usize)
fn shl_assign(&mut self, other: usize)
<<=
操作。 Read more1.8.0 · source§impl ShlAssign<usize> for i8
impl ShlAssign<usize> for i8
source§fn shl_assign(&mut self, other: usize)
fn shl_assign(&mut self, other: usize)
<<=
操作。 Read more1.8.0 · source§impl ShlAssign<usize> for isize
impl ShlAssign<usize> for isize
source§fn shl_assign(&mut self, other: usize)
fn shl_assign(&mut self, other: usize)
<<=
操作。 Read more1.8.0 · source§impl ShlAssign<usize> for u128
impl ShlAssign<usize> for u128
source§fn shl_assign(&mut self, other: usize)
fn shl_assign(&mut self, other: usize)
<<=
操作。 Read more1.8.0 · source§impl ShlAssign<usize> for u16
impl ShlAssign<usize> for u16
source§fn shl_assign(&mut self, other: usize)
fn shl_assign(&mut self, other: usize)
<<=
操作。 Read more1.8.0 · source§impl ShlAssign<usize> for u32
impl ShlAssign<usize> for u32
source§fn shl_assign(&mut self, other: usize)
fn shl_assign(&mut self, other: usize)
<<=
操作。 Read more1.8.0 · source§impl ShlAssign<usize> for u64
impl ShlAssign<usize> for u64
source§fn shl_assign(&mut self, other: usize)
fn shl_assign(&mut self, other: usize)
<<=
操作。 Read more1.8.0 · source§impl ShlAssign<usize> for u8
impl ShlAssign<usize> for u8
source§fn shl_assign(&mut self, other: usize)
fn shl_assign(&mut self, other: usize)
<<=
操作。 Read more1.8.0 · source§impl ShlAssign<usize> for usize
impl ShlAssign<usize> for usize
source§fn shl_assign(&mut self, other: usize)
fn shl_assign(&mut self, other: usize)
<<=
操作。 Read more1.22.0 · source§impl ShrAssign<&i128> for usize
impl ShrAssign<&i128> for usize
source§fn shr_assign(&mut self, other: &i128)
fn shr_assign(&mut self, other: &i128)
>>=
操作。 Read more1.22.0 · source§impl ShrAssign<&i16> for usize
impl ShrAssign<&i16> for usize
source§fn shr_assign(&mut self, other: &i16)
fn shr_assign(&mut self, other: &i16)
>>=
操作。 Read more1.22.0 · source§impl ShrAssign<&i32> for usize
impl ShrAssign<&i32> for usize
source§fn shr_assign(&mut self, other: &i32)
fn shr_assign(&mut self, other: &i32)
>>=
操作。 Read more1.22.0 · source§impl ShrAssign<&i64> for usize
impl ShrAssign<&i64> for usize
source§fn shr_assign(&mut self, other: &i64)
fn shr_assign(&mut self, other: &i64)
>>=
操作。 Read more1.22.0 · source§impl ShrAssign<&i8> for usize
impl ShrAssign<&i8> for usize
source§fn shr_assign(&mut self, other: &i8)
fn shr_assign(&mut self, other: &i8)
>>=
操作。 Read more1.22.0 · source§impl ShrAssign<&isize> for usize
impl ShrAssign<&isize> for usize
source§fn shr_assign(&mut self, other: &isize)
fn shr_assign(&mut self, other: &isize)
>>=
操作。 Read more1.22.0 · source§impl ShrAssign<&u128> for usize
impl ShrAssign<&u128> for usize
source§fn shr_assign(&mut self, other: &u128)
fn shr_assign(&mut self, other: &u128)
>>=
操作。 Read more1.22.0 · source§impl ShrAssign<&u16> for usize
impl ShrAssign<&u16> for usize
source§fn shr_assign(&mut self, other: &u16)
fn shr_assign(&mut self, other: &u16)
>>=
操作。 Read more1.22.0 · source§impl ShrAssign<&u32> for usize
impl ShrAssign<&u32> for usize
source§fn shr_assign(&mut self, other: &u32)
fn shr_assign(&mut self, other: &u32)
>>=
操作。 Read more1.22.0 · source§impl ShrAssign<&u64> for usize
impl ShrAssign<&u64> for usize
source§fn shr_assign(&mut self, other: &u64)
fn shr_assign(&mut self, other: &u64)
>>=
操作。 Read more1.22.0 · source§impl ShrAssign<&u8> for usize
impl ShrAssign<&u8> for usize
source§fn shr_assign(&mut self, other: &u8)
fn shr_assign(&mut self, other: &u8)
>>=
操作。 Read more1.22.0 · source§impl ShrAssign<&usize> for Saturating<i128>
impl ShrAssign<&usize> for Saturating<i128>
source§fn shr_assign(&mut self, other: &usize)
fn shr_assign(&mut self, other: &usize)
>>=
操作。 Read more1.22.0 · source§impl ShrAssign<&usize> for Saturating<i16>
impl ShrAssign<&usize> for Saturating<i16>
source§fn shr_assign(&mut self, other: &usize)
fn shr_assign(&mut self, other: &usize)
>>=
操作。 Read more1.22.0 · source§impl ShrAssign<&usize> for Saturating<i32>
impl ShrAssign<&usize> for Saturating<i32>
source§fn shr_assign(&mut self, other: &usize)
fn shr_assign(&mut self, other: &usize)
>>=
操作。 Read more1.22.0 · source§impl ShrAssign<&usize> for Saturating<i64>
impl ShrAssign<&usize> for Saturating<i64>
source§fn shr_assign(&mut self, other: &usize)
fn shr_assign(&mut self, other: &usize)
>>=
操作。 Read more1.22.0 · source§impl ShrAssign<&usize> for Saturating<i8>
impl ShrAssign<&usize> for Saturating<i8>
source§fn shr_assign(&mut self, other: &usize)
fn shr_assign(&mut self, other: &usize)
>>=
操作。 Read more1.22.0 · source§impl ShrAssign<&usize> for Saturating<isize>
impl ShrAssign<&usize> for Saturating<isize>
source§fn shr_assign(&mut self, other: &usize)
fn shr_assign(&mut self, other: &usize)
>>=
操作。 Read more1.22.0 · source§impl ShrAssign<&usize> for Saturating<u128>
impl ShrAssign<&usize> for Saturating<u128>
source§fn shr_assign(&mut self, other: &usize)
fn shr_assign(&mut self, other: &usize)
>>=
操作。 Read more1.22.0 · source§impl ShrAssign<&usize> for Saturating<u16>
impl ShrAssign<&usize> for Saturating<u16>
source§fn shr_assign(&mut self, other: &usize)
fn shr_assign(&mut self, other: &usize)
>>=
操作。 Read more1.22.0 · source§impl ShrAssign<&usize> for Saturating<u32>
impl ShrAssign<&usize> for Saturating<u32>
source§fn shr_assign(&mut self, other: &usize)
fn shr_assign(&mut self, other: &usize)
>>=
操作。 Read more1.22.0 · source§impl ShrAssign<&usize> for Saturating<u64>
impl ShrAssign<&usize> for Saturating<u64>
source§fn shr_assign(&mut self, other: &usize)
fn shr_assign(&mut self, other: &usize)
>>=
操作。 Read more1.22.0 · source§impl ShrAssign<&usize> for Saturating<u8>
impl ShrAssign<&usize> for Saturating<u8>
source§fn shr_assign(&mut self, other: &usize)
fn shr_assign(&mut self, other: &usize)
>>=
操作。 Read more1.22.0 · source§impl ShrAssign<&usize> for Saturating<usize>
impl ShrAssign<&usize> for Saturating<usize>
source§fn shr_assign(&mut self, other: &usize)
fn shr_assign(&mut self, other: &usize)
>>=
操作。 Read more1.22.0 · source§impl ShrAssign<&usize> for Wrapping<i128>
impl ShrAssign<&usize> for Wrapping<i128>
source§fn shr_assign(&mut self, other: &usize)
fn shr_assign(&mut self, other: &usize)
>>=
操作。 Read more1.22.0 · source§impl ShrAssign<&usize> for Wrapping<i16>
impl ShrAssign<&usize> for Wrapping<i16>
source§fn shr_assign(&mut self, other: &usize)
fn shr_assign(&mut self, other: &usize)
>>=
操作。 Read more1.22.0 · source§impl ShrAssign<&usize> for Wrapping<i32>
impl ShrAssign<&usize> for Wrapping<i32>
source§fn shr_assign(&mut self, other: &usize)
fn shr_assign(&mut self, other: &usize)
>>=
操作。 Read more1.22.0 · source§impl ShrAssign<&usize> for Wrapping<i64>
impl ShrAssign<&usize> for Wrapping<i64>
source§fn shr_assign(&mut self, other: &usize)
fn shr_assign(&mut self, other: &usize)
>>=
操作。 Read more1.22.0 · source§impl ShrAssign<&usize> for Wrapping<i8>
impl ShrAssign<&usize> for Wrapping<i8>
source§fn shr_assign(&mut self, other: &usize)
fn shr_assign(&mut self, other: &usize)
>>=
操作。 Read more1.22.0 · source§impl ShrAssign<&usize> for Wrapping<isize>
impl ShrAssign<&usize> for Wrapping<isize>
source§fn shr_assign(&mut self, other: &usize)
fn shr_assign(&mut self, other: &usize)
>>=
操作。 Read more1.22.0 · source§impl ShrAssign<&usize> for Wrapping<u128>
impl ShrAssign<&usize> for Wrapping<u128>
source§fn shr_assign(&mut self, other: &usize)
fn shr_assign(&mut self, other: &usize)
>>=
操作。 Read more1.22.0 · source§impl ShrAssign<&usize> for Wrapping<u16>
impl ShrAssign<&usize> for Wrapping<u16>
source§fn shr_assign(&mut self, other: &usize)
fn shr_assign(&mut self, other: &usize)
>>=
操作。 Read more1.22.0 · source§impl ShrAssign<&usize> for Wrapping<u32>
impl ShrAssign<&usize> for Wrapping<u32>
source§fn shr_assign(&mut self, other: &usize)
fn shr_assign(&mut self, other: &usize)
>>=
操作。 Read more1.22.0 · source§impl ShrAssign<&usize> for Wrapping<u64>
impl ShrAssign<&usize> for Wrapping<u64>
source§fn shr_assign(&mut self, other: &usize)
fn shr_assign(&mut self, other: &usize)
>>=
操作。 Read more1.22.0 · source§impl ShrAssign<&usize> for Wrapping<u8>
impl ShrAssign<&usize> for Wrapping<u8>
source§fn shr_assign(&mut self, other: &usize)
fn shr_assign(&mut self, other: &usize)
>>=
操作。 Read more1.22.0 · source§impl ShrAssign<&usize> for Wrapping<usize>
impl ShrAssign<&usize> for Wrapping<usize>
source§fn shr_assign(&mut self, other: &usize)
fn shr_assign(&mut self, other: &usize)
>>=
操作。 Read more1.22.0 · source§impl ShrAssign<&usize> for i128
impl ShrAssign<&usize> for i128
source§fn shr_assign(&mut self, other: &usize)
fn shr_assign(&mut self, other: &usize)
>>=
操作。 Read more1.22.0 · source§impl ShrAssign<&usize> for i16
impl ShrAssign<&usize> for i16
source§fn shr_assign(&mut self, other: &usize)
fn shr_assign(&mut self, other: &usize)
>>=
操作。 Read more1.22.0 · source§impl ShrAssign<&usize> for i32
impl ShrAssign<&usize> for i32
source§fn shr_assign(&mut self, other: &usize)
fn shr_assign(&mut self, other: &usize)
>>=
操作。 Read more1.22.0 · source§impl ShrAssign<&usize> for i64
impl ShrAssign<&usize> for i64
source§fn shr_assign(&mut self, other: &usize)
fn shr_assign(&mut self, other: &usize)
>>=
操作。 Read more1.22.0 · source§impl ShrAssign<&usize> for i8
impl ShrAssign<&usize> for i8
source§fn shr_assign(&mut self, other: &usize)
fn shr_assign(&mut self, other: &usize)
>>=
操作。 Read more1.22.0 · source§impl ShrAssign<&usize> for isize
impl ShrAssign<&usize> for isize
source§fn shr_assign(&mut self, other: &usize)
fn shr_assign(&mut self, other: &usize)
>>=
操作。 Read more1.22.0 · source§impl ShrAssign<&usize> for u128
impl ShrAssign<&usize> for u128
source§fn shr_assign(&mut self, other: &usize)
fn shr_assign(&mut self, other: &usize)
>>=
操作。 Read more1.22.0 · source§impl ShrAssign<&usize> for u16
impl ShrAssign<&usize> for u16
source§fn shr_assign(&mut self, other: &usize)
fn shr_assign(&mut self, other: &usize)
>>=
操作。 Read more1.22.0 · source§impl ShrAssign<&usize> for u32
impl ShrAssign<&usize> for u32
source§fn shr_assign(&mut self, other: &usize)
fn shr_assign(&mut self, other: &usize)
>>=
操作。 Read more1.22.0 · source§impl ShrAssign<&usize> for u64
impl ShrAssign<&usize> for u64
source§fn shr_assign(&mut self, other: &usize)
fn shr_assign(&mut self, other: &usize)
>>=
操作。 Read more1.22.0 · source§impl ShrAssign<&usize> for u8
impl ShrAssign<&usize> for u8
source§fn shr_assign(&mut self, other: &usize)
fn shr_assign(&mut self, other: &usize)
>>=
操作。 Read more1.22.0 · source§impl ShrAssign<&usize> for usize
impl ShrAssign<&usize> for usize
source§fn shr_assign(&mut self, other: &usize)
fn shr_assign(&mut self, other: &usize)
>>=
操作。 Read more1.8.0 · source§impl ShrAssign<i128> for usize
impl ShrAssign<i128> for usize
source§fn shr_assign(&mut self, other: i128)
fn shr_assign(&mut self, other: i128)
>>=
操作。 Read more1.8.0 · source§impl ShrAssign<i16> for usize
impl ShrAssign<i16> for usize
source§fn shr_assign(&mut self, other: i16)
fn shr_assign(&mut self, other: i16)
>>=
操作。 Read more1.8.0 · source§impl ShrAssign<i32> for usize
impl ShrAssign<i32> for usize
source§fn shr_assign(&mut self, other: i32)
fn shr_assign(&mut self, other: i32)
>>=
操作。 Read more1.8.0 · source§impl ShrAssign<i64> for usize
impl ShrAssign<i64> for usize
source§fn shr_assign(&mut self, other: i64)
fn shr_assign(&mut self, other: i64)
>>=
操作。 Read more1.8.0 · source§impl ShrAssign<i8> for usize
impl ShrAssign<i8> for usize
source§fn shr_assign(&mut self, other: i8)
fn shr_assign(&mut self, other: i8)
>>=
操作。 Read more1.8.0 · source§impl ShrAssign<isize> for usize
impl ShrAssign<isize> for usize
source§fn shr_assign(&mut self, other: isize)
fn shr_assign(&mut self, other: isize)
>>=
操作。 Read more1.8.0 · source§impl ShrAssign<u128> for usize
impl ShrAssign<u128> for usize
source§fn shr_assign(&mut self, other: u128)
fn shr_assign(&mut self, other: u128)
>>=
操作。 Read more1.8.0 · source§impl ShrAssign<u16> for usize
impl ShrAssign<u16> for usize
source§fn shr_assign(&mut self, other: u16)
fn shr_assign(&mut self, other: u16)
>>=
操作。 Read more1.8.0 · source§impl ShrAssign<u32> for usize
impl ShrAssign<u32> for usize
source§fn shr_assign(&mut self, other: u32)
fn shr_assign(&mut self, other: u32)
>>=
操作。 Read more1.8.0 · source§impl ShrAssign<u64> for usize
impl ShrAssign<u64> for usize
source§fn shr_assign(&mut self, other: u64)
fn shr_assign(&mut self, other: u64)
>>=
操作。 Read more1.8.0 · source§impl ShrAssign<u8> for usize
impl ShrAssign<u8> for usize
source§fn shr_assign(&mut self, other: u8)
fn shr_assign(&mut self, other: u8)
>>=
操作。 Read moresource§impl ShrAssign<usize> for Saturating<i128>
impl ShrAssign<usize> for Saturating<i128>
source§fn shr_assign(&mut self, other: usize)
fn shr_assign(&mut self, other: usize)
>>=
操作。 Read moresource§impl ShrAssign<usize> for Saturating<i16>
impl ShrAssign<usize> for Saturating<i16>
source§fn shr_assign(&mut self, other: usize)
fn shr_assign(&mut self, other: usize)
>>=
操作。 Read moresource§impl ShrAssign<usize> for Saturating<i32>
impl ShrAssign<usize> for Saturating<i32>
source§fn shr_assign(&mut self, other: usize)
fn shr_assign(&mut self, other: usize)
>>=
操作。 Read moresource§impl ShrAssign<usize> for Saturating<i64>
impl ShrAssign<usize> for Saturating<i64>
source§fn shr_assign(&mut self, other: usize)
fn shr_assign(&mut self, other: usize)
>>=
操作。 Read moresource§impl ShrAssign<usize> for Saturating<i8>
impl ShrAssign<usize> for Saturating<i8>
source§fn shr_assign(&mut self, other: usize)
fn shr_assign(&mut self, other: usize)
>>=
操作。 Read moresource§impl ShrAssign<usize> for Saturating<isize>
impl ShrAssign<usize> for Saturating<isize>
source§fn shr_assign(&mut self, other: usize)
fn shr_assign(&mut self, other: usize)
>>=
操作。 Read moresource§impl ShrAssign<usize> for Saturating<u128>
impl ShrAssign<usize> for Saturating<u128>
source§fn shr_assign(&mut self, other: usize)
fn shr_assign(&mut self, other: usize)
>>=
操作。 Read moresource§impl ShrAssign<usize> for Saturating<u16>
impl ShrAssign<usize> for Saturating<u16>
source§fn shr_assign(&mut self, other: usize)
fn shr_assign(&mut self, other: usize)
>>=
操作。 Read moresource§impl ShrAssign<usize> for Saturating<u32>
impl ShrAssign<usize> for Saturating<u32>
source§fn shr_assign(&mut self, other: usize)
fn shr_assign(&mut self, other: usize)
>>=
操作。 Read moresource§impl ShrAssign<usize> for Saturating<u64>
impl ShrAssign<usize> for Saturating<u64>
source§fn shr_assign(&mut self, other: usize)
fn shr_assign(&mut self, other: usize)
>>=
操作。 Read moresource§impl ShrAssign<usize> for Saturating<u8>
impl ShrAssign<usize> for Saturating<u8>
source§fn shr_assign(&mut self, other: usize)
fn shr_assign(&mut self, other: usize)
>>=
操作。 Read moresource§impl ShrAssign<usize> for Saturating<usize>
impl ShrAssign<usize> for Saturating<usize>
source§fn shr_assign(&mut self, other: usize)
fn shr_assign(&mut self, other: usize)
>>=
操作。 Read more1.8.0 · source§impl ShrAssign<usize> for Wrapping<i128>
impl ShrAssign<usize> for Wrapping<i128>
source§fn shr_assign(&mut self, other: usize)
fn shr_assign(&mut self, other: usize)
>>=
操作。 Read more1.8.0 · source§impl ShrAssign<usize> for Wrapping<i16>
impl ShrAssign<usize> for Wrapping<i16>
source§fn shr_assign(&mut self, other: usize)
fn shr_assign(&mut self, other: usize)
>>=
操作。 Read more1.8.0 · source§impl ShrAssign<usize> for Wrapping<i32>
impl ShrAssign<usize> for Wrapping<i32>
source§fn shr_assign(&mut self, other: usize)
fn shr_assign(&mut self, other: usize)
>>=
操作。 Read more1.8.0 · source§impl ShrAssign<usize> for Wrapping<i64>
impl ShrAssign<usize> for Wrapping<i64>
source§fn shr_assign(&mut self, other: usize)
fn shr_assign(&mut self, other: usize)
>>=
操作。 Read more1.8.0 · source§impl ShrAssign<usize> for Wrapping<i8>
impl ShrAssign<usize> for Wrapping<i8>
source§fn shr_assign(&mut self, other: usize)
fn shr_assign(&mut self, other: usize)
>>=
操作。 Read more1.8.0 · source§impl ShrAssign<usize> for Wrapping<isize>
impl ShrAssign<usize> for Wrapping<isize>
source§fn shr_assign(&mut self, other: usize)
fn shr_assign(&mut self, other: usize)
>>=
操作。 Read more1.8.0 · source§impl ShrAssign<usize> for Wrapping<u128>
impl ShrAssign<usize> for Wrapping<u128>
source§fn shr_assign(&mut self, other: usize)
fn shr_assign(&mut self, other: usize)
>>=
操作。 Read more1.8.0 · source§impl ShrAssign<usize> for Wrapping<u16>
impl ShrAssign<usize> for Wrapping<u16>
source§fn shr_assign(&mut self, other: usize)
fn shr_assign(&mut self, other: usize)
>>=
操作。 Read more1.8.0 · source§impl ShrAssign<usize> for Wrapping<u32>
impl ShrAssign<usize> for Wrapping<u32>
source§fn shr_assign(&mut self, other: usize)
fn shr_assign(&mut self, other: usize)
>>=
操作。 Read more1.8.0 · source§impl ShrAssign<usize> for Wrapping<u64>
impl ShrAssign<usize> for Wrapping<u64>
source§fn shr_assign(&mut self, other: usize)
fn shr_assign(&mut self, other: usize)
>>=
操作。 Read more1.8.0 · source§impl ShrAssign<usize> for Wrapping<u8>
impl ShrAssign<usize> for Wrapping<u8>
source§fn shr_assign(&mut self, other: usize)
fn shr_assign(&mut self, other: usize)
>>=
操作。 Read more1.8.0 · source§impl ShrAssign<usize> for Wrapping<usize>
impl ShrAssign<usize> for Wrapping<usize>
source§fn shr_assign(&mut self, other: usize)
fn shr_assign(&mut self, other: usize)
>>=
操作。 Read more1.8.0 · source§impl ShrAssign<usize> for i128
impl ShrAssign<usize> for i128
source§fn shr_assign(&mut self, other: usize)
fn shr_assign(&mut self, other: usize)
>>=
操作。 Read more1.8.0 · source§impl ShrAssign<usize> for i16
impl ShrAssign<usize> for i16
source§fn shr_assign(&mut self, other: usize)
fn shr_assign(&mut self, other: usize)
>>=
操作。 Read more1.8.0 · source§impl ShrAssign<usize> for i32
impl ShrAssign<usize> for i32
source§fn shr_assign(&mut self, other: usize)
fn shr_assign(&mut self, other: usize)
>>=
操作。 Read more1.8.0 · source§impl ShrAssign<usize> for i64
impl ShrAssign<usize> for i64
source§fn shr_assign(&mut self, other: usize)
fn shr_assign(&mut self, other: usize)
>>=
操作。 Read more1.8.0 · source§impl ShrAssign<usize> for i8
impl ShrAssign<usize> for i8
source§fn shr_assign(&mut self, other: usize)
fn shr_assign(&mut self, other: usize)
>>=
操作。 Read more1.8.0 · source§impl ShrAssign<usize> for isize
impl ShrAssign<usize> for isize
source§fn shr_assign(&mut self, other: usize)
fn shr_assign(&mut self, other: usize)
>>=
操作。 Read more1.8.0 · source§impl ShrAssign<usize> for u128
impl ShrAssign<usize> for u128
source§fn shr_assign(&mut self, other: usize)
fn shr_assign(&mut self, other: usize)
>>=
操作。 Read more1.8.0 · source§impl ShrAssign<usize> for u16
impl ShrAssign<usize> for u16
source§fn shr_assign(&mut self, other: usize)
fn shr_assign(&mut self, other: usize)
>>=
操作。 Read more1.8.0 · source§impl ShrAssign<usize> for u32
impl ShrAssign<usize> for u32
source§fn shr_assign(&mut self, other: usize)
fn shr_assign(&mut self, other: usize)
>>=
操作。 Read more1.8.0 · source§impl ShrAssign<usize> for u64
impl ShrAssign<usize> for u64
source§fn shr_assign(&mut self, other: usize)
fn shr_assign(&mut self, other: usize)
>>=
操作。 Read more1.8.0 · source§impl ShrAssign<usize> for u8
impl ShrAssign<usize> for u8
source§fn shr_assign(&mut self, other: usize)
fn shr_assign(&mut self, other: usize)
>>=
操作。 Read more1.8.0 · source§impl ShrAssign<usize> for usize
impl ShrAssign<usize> for usize
source§fn shr_assign(&mut self, other: usize)
fn shr_assign(&mut self, other: usize)
>>=
操作。 Read moresource§impl SimdElement for usize
impl SimdElement for usize
1.15.0 (const: unstable) · source§impl<T> SliceIndex<[T]> for usize
impl<T> SliceIndex<[T]> for usize
const: unstable · source§fn get(self, slice: &[T]) -> Option<&T>
fn get(self, slice: &[T]) -> Option<&T>
slice_index_methods
)const: unstable · source§fn get_mut(self, slice: &mut [T]) -> Option<&mut T>
fn get_mut(self, slice: &mut [T]) -> Option<&mut T>
slice_index_methods
)const: unstable · source§unsafe fn get_unchecked(self, slice: *const [T]) -> *const T
unsafe fn get_unchecked(self, slice: *const [T]) -> *const T
slice_index_methods
)slice
指针调用此方法也是 [undefined 行为]。const: unstable · source§unsafe fn get_unchecked_mut(self, slice: *mut [T]) -> *mut T
unsafe fn get_unchecked_mut(self, slice: *mut [T]) -> *mut T
slice_index_methods
)slice
指针调用此方法也是 [undefined 行为]。source§impl Step for usize
impl Step for usize
source§unsafe fn forward_unchecked(start: Self, n: usize) -> Self
unsafe fn forward_unchecked(start: Self, n: usize) -> Self
step_trait
#42168)source§unsafe fn backward_unchecked(start: Self, n: usize) -> Self
unsafe fn backward_unchecked(start: Self, n: usize) -> Self
step_trait
#42168)count
次的 predecessor 而获得的值。 Read moresource§fn forward(start: Self, n: usize) -> Self
fn forward(start: Self, n: usize) -> Self
step_trait
#42168)source§fn backward(start: Self, n: usize) -> Self
fn backward(start: Self, n: usize) -> Self
step_trait
#42168)count
次的 predecessor 而获得的值。 Read moresource§fn steps_between(start: &Self, end: &Self) -> Option<usize>
fn steps_between(start: &Self, end: &Self) -> Option<usize>
step_trait
#42168)1.22.0 · source§impl SubAssign<&usize> for Saturating<usize>
impl SubAssign<&usize> for Saturating<usize>
source§fn sub_assign(&mut self, other: &usize)
fn sub_assign(&mut self, other: &usize)
-=
操作。 Read more1.22.0 · source§impl SubAssign<&usize> for Wrapping<usize>
impl SubAssign<&usize> for Wrapping<usize>
source§fn sub_assign(&mut self, other: &usize)
fn sub_assign(&mut self, other: &usize)
-=
操作。 Read more1.22.0 · source§impl SubAssign<&usize> for usize
impl SubAssign<&usize> for usize
source§fn sub_assign(&mut self, other: &usize)
fn sub_assign(&mut self, other: &usize)
-=
操作。 Read moresource§impl SubAssign<usize> for Saturating<usize>
impl SubAssign<usize> for Saturating<usize>
source§fn sub_assign(&mut self, other: usize)
fn sub_assign(&mut self, other: usize)
-=
操作。 Read more1.60.0 · source§impl SubAssign<usize> for Wrapping<usize>
impl SubAssign<usize> for Wrapping<usize>
source§fn sub_assign(&mut self, other: usize)
fn sub_assign(&mut self, other: usize)
-=
操作。 Read more1.8.0 · source§impl SubAssign<usize> for usize
impl SubAssign<usize> for usize
source§fn sub_assign(&mut self, other: usize)
fn sub_assign(&mut self, other: usize)
-=
操作。 Read more