#[repr(transparent)]pub struct Wrapping<T>(pub T);
Provides intentionally-wrapped arithmetic on T.
Operations like + on u32 values are intended to never overflow, and in some debug configurations overflow is detected and results in a panic. While most arithmetic falls into this category, some code explicitly expects and relies upon modular arithmetic (e.g., hashing).
Wrapping arithmetic can be achieved either through methods like wrapping_add, or through the Wrapping<T> type, which says that all standard arithmetic operations on the underlying value are intended to have wrapping semantics.
The underlying value can be retrieved through the .0 index of the Wrapping tuple.
use std::num::Wrapping; let zero = Wrapping(0u32); let one = Wrapping(1u32); assert_eq!(u32::MAX, (zero - one).0);
Wrapping<T> is guaranteed to have the same layout and ABI as T.
0: Timpl Wrapping<usize>
pub const MIN: Wrapping<usize>
wrapping_int_impl #32463)
Returns the smallest value that can be represented by this integer type.
Basic usage:
#![feature(wrapping_int_impl)] use std::num::Wrapping; assert_eq!(<Wrapping<usize>>::MIN, Wrapping(usize::MIN));
pub const MAX: Wrapping<usize>
wrapping_int_impl #32463)
Returns the largest value that can be represented by this integer type.
Basic usage:
#![feature(wrapping_int_impl)] use std::num::Wrapping; assert_eq!(<Wrapping<usize>>::MAX, Wrapping(usize::MAX));
pub const BITS: u32 = usize::BITS
wrapping_int_impl #32463)
Returns the size of this integer type in bits.
Basic usage:
#![feature(wrapping_int_impl)] use std::num::Wrapping; assert_eq!(<Wrapping<usize>>::BITS, usize::BITS);
pub const fn count_ones(self) -> u32
wrapping_int_impl #32463)
Returns the number of ones in the binary representation of self.
Basic usage:
#![feature(wrapping_int_impl)] use std::num::Wrapping; let n = Wrapping(0b01001100usize); assert_eq!(n.count_ones(), 3);
pub const fn count_zeros(self) -> u32
wrapping_int_impl #32463)
Returns the number of zeros in the binary representation of self.
Basic usage:
#![feature(wrapping_int_impl)] use std::num::Wrapping; assert_eq!(Wrapping(!0usize).count_zeros(), 0);
pub const fn trailing_zeros(self) -> u32
wrapping_int_impl #32463)
Returns the number of trailing zeros in the binary representation of self.
Basic usage:
#![feature(wrapping_int_impl)] use std::num::Wrapping; let n = Wrapping(0b0101000usize); assert_eq!(n.trailing_zeros(), 3);
pub const fn rotate_left(self, n: u32) -> Wrapping<usize>
wrapping_int_impl #32463)
Shifts the bits to the left by a specified amount, n, wrapping the truncated bits to the end of the resulting integer.
Please note this isn’t the same operation as the << shifting operator!
Basic usage:
#![feature(wrapping_int_impl)] use std::num::Wrapping; let n: Wrapping<i64> = Wrapping(0x0123456789ABCDEF); let m: Wrapping<i64> = Wrapping(-0x76543210FEDCBA99); assert_eq!(n.rotate_left(32), m);
pub const fn rotate_right(self, n: u32) -> Wrapping<usize>
wrapping_int_impl #32463)
Shifts the bits to the right by a specified amount, n, wrapping the truncated bits to the beginning of the resulting integer.
Please note this isn’t the same operation as the >> shifting operator!
Basic usage:
#![feature(wrapping_int_impl)] use std::num::Wrapping; let n: Wrapping<i64> = Wrapping(0x0123456789ABCDEF); let m: Wrapping<i64> = Wrapping(-0xFEDCBA987654322); assert_eq!(n.rotate_right(4), m);
pub const fn swap_bytes(self) -> Wrapping<usize>
wrapping_int_impl #32463)
Reverses the byte order of the integer.
Basic usage:
#![feature(wrapping_int_impl)] use std::num::Wrapping; let n: Wrapping<i16> = Wrapping(0b0000000_01010101); assert_eq!(n, Wrapping(85)); let m = n.swap_bytes(); assert_eq!(m, Wrapping(0b01010101_00000000)); assert_eq!(m, Wrapping(21760));
pub const fn reverse_bits(self) -> Wrapping<usize>
Reverses the bit pattern of the integer.
Please note that this example is shared among integer types, which is why i16 is used.
Basic usage:
use std::num::Wrapping; let n = Wrapping(0b0000000_01010101i16); assert_eq!(n, Wrapping(85)); let m = n.reverse_bits(); assert_eq!(m.0 as u16, 0b10101010_00000000); assert_eq!(m, Wrapping(-22016));
pub const fn from_be(x: Wrapping<usize>) -> Wrapping<usize>
wrapping_int_impl #32463)
Converts an integer from big endian to the target’s endianness.
On big endian this is a no-op. On little endian the bytes are swapped.
Basic usage:
#![feature(wrapping_int_impl)]
use std::num::Wrapping;
let n = Wrapping(0x1Ausize);
if cfg!(target_endian = "big") {
assert_eq!(<Wrapping<usize>>::from_be(n), n)
} else {
assert_eq!(<Wrapping<usize>>::from_be(n), n.swap_bytes())
}pub const fn from_le(x: Wrapping<usize>) -> Wrapping<usize>
wrapping_int_impl #32463)
Converts an integer from little endian to the target’s endianness.
On little endian this is a no-op. On big endian the bytes are swapped.
Basic usage:
#![feature(wrapping_int_impl)]
use std::num::Wrapping;
let n = Wrapping(0x1Ausize);
if cfg!(target_endian = "little") {
assert_eq!(<Wrapping<usize>>::from_le(n), n)
} else {
assert_eq!(<Wrapping<usize>>::from_le(n), n.swap_bytes())
}pub const fn to_be(self) -> Wrapping<usize>
wrapping_int_impl #32463)
Converts self to big endian from the target’s endianness.
On big endian this is a no-op. On little endian the bytes are swapped.
Basic usage:
#![feature(wrapping_int_impl)]
use std::num::Wrapping;
let n = Wrapping(0x1Ausize);
if cfg!(target_endian = "big") {
assert_eq!(n.to_be(), n)
} else {
assert_eq!(n.to_be(), n.swap_bytes())
}pub const fn to_le(self) -> Wrapping<usize>
wrapping_int_impl #32463)
Converts self to little endian from the target’s endianness.
On little endian this is a no-op. On big endian the bytes are swapped.
Basic usage:
#![feature(wrapping_int_impl)]
use std::num::Wrapping;
let n = Wrapping(0x1Ausize);
if cfg!(target_endian = "little") {
assert_eq!(n.to_le(), n)
} else {
assert_eq!(n.to_le(), n.swap_bytes())
}pub fn pow(self, exp: u32) -> Wrapping<usize>
wrapping_int_impl #32463)
Raises self to the power of exp, using exponentiation by squaring.
Basic usage:
#![feature(wrapping_int_impl)] use std::num::Wrapping; assert_eq!(Wrapping(3usize).pow(4), Wrapping(81));
Results that are too large are wrapped:
#![feature(wrapping_int_impl)] use std::num::Wrapping; assert_eq!(Wrapping(3i8).pow(5), Wrapping(-13)); assert_eq!(Wrapping(3i8).pow(6), Wrapping(-39));
impl Wrapping<u8>
pub const MIN: Wrapping<u8>
wrapping_int_impl #32463)
Returns the smallest value that can be represented by this integer type.
Basic usage:
#![feature(wrapping_int_impl)] use std::num::Wrapping; assert_eq!(<Wrapping<u8>>::MIN, Wrapping(u8::MIN));
pub const MAX: Wrapping<u8>
wrapping_int_impl #32463)
Returns the largest value that can be represented by this integer type.
Basic usage:
#![feature(wrapping_int_impl)] use std::num::Wrapping; assert_eq!(<Wrapping<u8>>::MAX, Wrapping(u8::MAX));
pub const BITS: u32 = u8::BITS
wrapping_int_impl #32463)
Returns the size of this integer type in bits.
Basic usage:
#![feature(wrapping_int_impl)] use std::num::Wrapping; assert_eq!(<Wrapping<u8>>::BITS, u8::BITS);
pub const fn count_ones(self) -> u32
wrapping_int_impl #32463)
Returns the number of ones in the binary representation of self.
Basic usage:
#![feature(wrapping_int_impl)] use std::num::Wrapping; let n = Wrapping(0b01001100u8); assert_eq!(n.count_ones(), 3);
pub const fn count_zeros(self) -> u32
wrapping_int_impl #32463)
Returns the number of zeros in the binary representation of self.
Basic usage:
#![feature(wrapping_int_impl)] use std::num::Wrapping; assert_eq!(Wrapping(!0u8).count_zeros(), 0);
pub const fn trailing_zeros(self) -> u32
wrapping_int_impl #32463)
Returns the number of trailing zeros in the binary representation of self.
Basic usage:
#![feature(wrapping_int_impl)] use std::num::Wrapping; let n = Wrapping(0b0101000u8); assert_eq!(n.trailing_zeros(), 3);
pub const fn rotate_left(self, n: u32) -> Wrapping<u8>
wrapping_int_impl #32463)
Shifts the bits to the left by a specified amount, n, wrapping the truncated bits to the end of the resulting integer.
Please note this isn’t the same operation as the << shifting operator!
Basic usage:
#![feature(wrapping_int_impl)] use std::num::Wrapping; let n: Wrapping<i64> = Wrapping(0x0123456789ABCDEF); let m: Wrapping<i64> = Wrapping(-0x76543210FEDCBA99); assert_eq!(n.rotate_left(32), m);
pub const fn rotate_right(self, n: u32) -> Wrapping<u8>
wrapping_int_impl #32463)
Shifts the bits to the right by a specified amount, n, wrapping the truncated bits to the beginning of the resulting integer.
Please note this isn’t the same operation as the >> shifting operator!
Basic usage:
#![feature(wrapping_int_impl)] use std::num::Wrapping; let n: Wrapping<i64> = Wrapping(0x0123456789ABCDEF); let m: Wrapping<i64> = Wrapping(-0xFEDCBA987654322); assert_eq!(n.rotate_right(4), m);
pub const fn swap_bytes(self) -> Wrapping<u8>
wrapping_int_impl #32463)
Reverses the byte order of the integer.
Basic usage:
#![feature(wrapping_int_impl)] use std::num::Wrapping; let n: Wrapping<i16> = Wrapping(0b0000000_01010101); assert_eq!(n, Wrapping(85)); let m = n.swap_bytes(); assert_eq!(m, Wrapping(0b01010101_00000000)); assert_eq!(m, Wrapping(21760));
pub const fn reverse_bits(self) -> Wrapping<u8>
Reverses the bit pattern of the integer.
Please note that this example is shared among integer types, which is why i16 is used.
Basic usage:
use std::num::Wrapping; let n = Wrapping(0b0000000_01010101i16); assert_eq!(n, Wrapping(85)); let m = n.reverse_bits(); assert_eq!(m.0 as u16, 0b10101010_00000000); assert_eq!(m, Wrapping(-22016));
pub const fn from_be(x: Wrapping<u8>) -> Wrapping<u8>
wrapping_int_impl #32463)
Converts an integer from big endian to the target’s endianness.
On big endian this is a no-op. On little endian the bytes are swapped.
Basic usage:
#![feature(wrapping_int_impl)]
use std::num::Wrapping;
let n = Wrapping(0x1Au8);
if cfg!(target_endian = "big") {
assert_eq!(<Wrapping<u8>>::from_be(n), n)
} else {
assert_eq!(<Wrapping<u8>>::from_be(n), n.swap_bytes())
}pub const fn from_le(x: Wrapping<u8>) -> Wrapping<u8>
wrapping_int_impl #32463)
Converts an integer from little endian to the target’s endianness.
On little endian this is a no-op. On big endian the bytes are swapped.
Basic usage:
#![feature(wrapping_int_impl)]
use std::num::Wrapping;
let n = Wrapping(0x1Au8);
if cfg!(target_endian = "little") {
assert_eq!(<Wrapping<u8>>::from_le(n), n)
} else {
assert_eq!(<Wrapping<u8>>::from_le(n), n.swap_bytes())
}pub const fn to_be(self) -> Wrapping<u8>
wrapping_int_impl #32463)
Converts self to big endian from the target’s endianness.
On big endian this is a no-op. On little endian the bytes are swapped.
Basic usage:
#![feature(wrapping_int_impl)]
use std::num::Wrapping;
let n = Wrapping(0x1Au8);
if cfg!(target_endian = "big") {
assert_eq!(n.to_be(), n)
} else {
assert_eq!(n.to_be(), n.swap_bytes())
}pub const fn to_le(self) -> Wrapping<u8>
wrapping_int_impl #32463)
Converts self to little endian from the target’s endianness.
On little endian this is a no-op. On big endian the bytes are swapped.
Basic usage:
#![feature(wrapping_int_impl)]
use std::num::Wrapping;
let n = Wrapping(0x1Au8);
if cfg!(target_endian = "little") {
assert_eq!(n.to_le(), n)
} else {
assert_eq!(n.to_le(), n.swap_bytes())
}pub fn pow(self, exp: u32) -> Wrapping<u8>
wrapping_int_impl #32463)
Raises self to the power of exp, using exponentiation by squaring.
Basic usage:
#![feature(wrapping_int_impl)] use std::num::Wrapping; assert_eq!(Wrapping(3u8).pow(4), Wrapping(81));
Results that are too large are wrapped:
#![feature(wrapping_int_impl)] use std::num::Wrapping; assert_eq!(Wrapping(3i8).pow(5), Wrapping(-13)); assert_eq!(Wrapping(3i8).pow(6), Wrapping(-39));
impl Wrapping<u16>
pub const MIN: Wrapping<u16>
wrapping_int_impl #32463)
Returns the smallest value that can be represented by this integer type.
Basic usage:
#![feature(wrapping_int_impl)] use std::num::Wrapping; assert_eq!(<Wrapping<u16>>::MIN, Wrapping(u16::MIN));
pub const MAX: Wrapping<u16>
wrapping_int_impl #32463)
Returns the largest value that can be represented by this integer type.
Basic usage:
#![feature(wrapping_int_impl)] use std::num::Wrapping; assert_eq!(<Wrapping<u16>>::MAX, Wrapping(u16::MAX));
pub const BITS: u32 = u16::BITS
wrapping_int_impl #32463)
Returns the size of this integer type in bits.
Basic usage:
#![feature(wrapping_int_impl)] use std::num::Wrapping; assert_eq!(<Wrapping<u16>>::BITS, u16::BITS);
pub const fn count_ones(self) -> u32
wrapping_int_impl #32463)
Returns the number of ones in the binary representation of self.
Basic usage:
#![feature(wrapping_int_impl)] use std::num::Wrapping; let n = Wrapping(0b01001100u16); assert_eq!(n.count_ones(), 3);
pub const fn count_zeros(self) -> u32
wrapping_int_impl #32463)
Returns the number of zeros in the binary representation of self.
Basic usage:
#![feature(wrapping_int_impl)] use std::num::Wrapping; assert_eq!(Wrapping(!0u16).count_zeros(), 0);
pub const fn trailing_zeros(self) -> u32
wrapping_int_impl #32463)
Returns the number of trailing zeros in the binary representation of self.
Basic usage:
#![feature(wrapping_int_impl)] use std::num::Wrapping; let n = Wrapping(0b0101000u16); assert_eq!(n.trailing_zeros(), 3);
pub const fn rotate_left(self, n: u32) -> Wrapping<u16>
wrapping_int_impl #32463)
Shifts the bits to the left by a specified amount, n, wrapping the truncated bits to the end of the resulting integer.
Please note this isn’t the same operation as the << shifting operator!
Basic usage:
#![feature(wrapping_int_impl)] use std::num::Wrapping; let n: Wrapping<i64> = Wrapping(0x0123456789ABCDEF); let m: Wrapping<i64> = Wrapping(-0x76543210FEDCBA99); assert_eq!(n.rotate_left(32), m);
pub const fn rotate_right(self, n: u32) -> Wrapping<u16>
wrapping_int_impl #32463)
Shifts the bits to the right by a specified amount, n, wrapping the truncated bits to the beginning of the resulting integer.
Please note this isn’t the same operation as the >> shifting operator!
Basic usage:
#![feature(wrapping_int_impl)] use std::num::Wrapping; let n: Wrapping<i64> = Wrapping(0x0123456789ABCDEF); let m: Wrapping<i64> = Wrapping(-0xFEDCBA987654322); assert_eq!(n.rotate_right(4), m);
pub const fn swap_bytes(self) -> Wrapping<u16>
wrapping_int_impl #32463)
Reverses the byte order of the integer.
Basic usage:
#![feature(wrapping_int_impl)] use std::num::Wrapping; let n: Wrapping<i16> = Wrapping(0b0000000_01010101); assert_eq!(n, Wrapping(85)); let m = n.swap_bytes(); assert_eq!(m, Wrapping(0b01010101_00000000)); assert_eq!(m, Wrapping(21760));
pub const fn reverse_bits(self) -> Wrapping<u16>
Reverses the bit pattern of the integer.
Please note that this example is shared among integer types, which is why i16 is used.
Basic usage:
use std::num::Wrapping; let n = Wrapping(0b0000000_01010101i16); assert_eq!(n, Wrapping(85)); let m = n.reverse_bits(); assert_eq!(m.0 as u16, 0b10101010_00000000); assert_eq!(m, Wrapping(-22016));
pub const fn from_be(x: Wrapping<u16>) -> Wrapping<u16>
wrapping_int_impl #32463)
Converts an integer from big endian to the target’s endianness.
On big endian this is a no-op. On little endian the bytes are swapped.
Basic usage:
#![feature(wrapping_int_impl)]
use std::num::Wrapping;
let n = Wrapping(0x1Au16);
if cfg!(target_endian = "big") {
assert_eq!(<Wrapping<u16>>::from_be(n), n)
} else {
assert_eq!(<Wrapping<u16>>::from_be(n), n.swap_bytes())
}pub const fn from_le(x: Wrapping<u16>) -> Wrapping<u16>
wrapping_int_impl #32463)
Converts an integer from little endian to the target’s endianness.
On little endian this is a no-op. On big endian the bytes are swapped.
Basic usage:
#![feature(wrapping_int_impl)]
use std::num::Wrapping;
let n = Wrapping(0x1Au16);
if cfg!(target_endian = "little") {
assert_eq!(<Wrapping<u16>>::from_le(n), n)
} else {
assert_eq!(<Wrapping<u16>>::from_le(n), n.swap_bytes())
}pub const fn to_be(self) -> Wrapping<u16>
wrapping_int_impl #32463)
Converts self to big endian from the target’s endianness.
On big endian this is a no-op. On little endian the bytes are swapped.
Basic usage:
#![feature(wrapping_int_impl)]
use std::num::Wrapping;
let n = Wrapping(0x1Au16);
if cfg!(target_endian = "big") {
assert_eq!(n.to_be(), n)
} else {
assert_eq!(n.to_be(), n.swap_bytes())
}pub const fn to_le(self) -> Wrapping<u16>
wrapping_int_impl #32463)
Converts self to little endian from the target’s endianness.
On little endian this is a no-op. On big endian the bytes are swapped.
Basic usage:
#![feature(wrapping_int_impl)]
use std::num::Wrapping;
let n = Wrapping(0x1Au16);
if cfg!(target_endian = "little") {
assert_eq!(n.to_le(), n)
} else {
assert_eq!(n.to_le(), n.swap_bytes())
}pub fn pow(self, exp: u32) -> Wrapping<u16>
wrapping_int_impl #32463)
Raises self to the power of exp, using exponentiation by squaring.
Basic usage:
#![feature(wrapping_int_impl)] use std::num::Wrapping; assert_eq!(Wrapping(3u16).pow(4), Wrapping(81));
Results that are too large are wrapped:
#![feature(wrapping_int_impl)] use std::num::Wrapping; assert_eq!(Wrapping(3i8).pow(5), Wrapping(-13)); assert_eq!(Wrapping(3i8).pow(6), Wrapping(-39));
impl Wrapping<u32>
pub const MIN: Wrapping<u32>
wrapping_int_impl #32463)
Returns the smallest value that can be represented by this integer type.
Basic usage:
#![feature(wrapping_int_impl)] use std::num::Wrapping; assert_eq!(<Wrapping<u32>>::MIN, Wrapping(u32::MIN));
pub const MAX: Wrapping<u32>
wrapping_int_impl #32463)
Returns the largest value that can be represented by this integer type.
Basic usage:
#![feature(wrapping_int_impl)] use std::num::Wrapping; assert_eq!(<Wrapping<u32>>::MAX, Wrapping(u32::MAX));
pub const BITS: u32 = u32::BITS
wrapping_int_impl #32463)
Returns the size of this integer type in bits.
Basic usage:
#![feature(wrapping_int_impl)] use std::num::Wrapping; assert_eq!(<Wrapping<u32>>::BITS, u32::BITS);
pub const fn count_ones(self) -> u32
wrapping_int_impl #32463)
Returns the number of ones in the binary representation of self.
Basic usage:
#![feature(wrapping_int_impl)] use std::num::Wrapping; let n = Wrapping(0b01001100u32); assert_eq!(n.count_ones(), 3);
pub const fn count_zeros(self) -> u32
wrapping_int_impl #32463)
Returns the number of zeros in the binary representation of self.
Basic usage:
#![feature(wrapping_int_impl)] use std::num::Wrapping; assert_eq!(Wrapping(!0u32).count_zeros(), 0);
pub const fn trailing_zeros(self) -> u32
wrapping_int_impl #32463)
Returns the number of trailing zeros in the binary representation of self.
Basic usage:
#![feature(wrapping_int_impl)] use std::num::Wrapping; let n = Wrapping(0b0101000u32); assert_eq!(n.trailing_zeros(), 3);
pub const fn rotate_left(self, n: u32) -> Wrapping<u32>
wrapping_int_impl #32463)
Shifts the bits to the left by a specified amount, n, wrapping the truncated bits to the end of the resulting integer.
Please note this isn’t the same operation as the << shifting operator!
Basic usage:
#![feature(wrapping_int_impl)] use std::num::Wrapping; let n: Wrapping<i64> = Wrapping(0x0123456789ABCDEF); let m: Wrapping<i64> = Wrapping(-0x76543210FEDCBA99); assert_eq!(n.rotate_left(32), m);
pub const fn rotate_right(self, n: u32) -> Wrapping<u32>
wrapping_int_impl #32463)
Shifts the bits to the right by a specified amount, n, wrapping the truncated bits to the beginning of the resulting integer.
Please note this isn’t the same operation as the >> shifting operator!
Basic usage:
#![feature(wrapping_int_impl)] use std::num::Wrapping; let n: Wrapping<i64> = Wrapping(0x0123456789ABCDEF); let m: Wrapping<i64> = Wrapping(-0xFEDCBA987654322); assert_eq!(n.rotate_right(4), m);
pub const fn swap_bytes(self) -> Wrapping<u32>
wrapping_int_impl #32463)
Reverses the byte order of the integer.
Basic usage:
#![feature(wrapping_int_impl)] use std::num::Wrapping; let n: Wrapping<i16> = Wrapping(0b0000000_01010101); assert_eq!(n, Wrapping(85)); let m = n.swap_bytes(); assert_eq!(m, Wrapping(0b01010101_00000000)); assert_eq!(m, Wrapping(21760));
pub const fn reverse_bits(self) -> Wrapping<u32>
Reverses the bit pattern of the integer.
Please note that this example is shared among integer types, which is why i16 is used.
Basic usage:
use std::num::Wrapping; let n = Wrapping(0b0000000_01010101i16); assert_eq!(n, Wrapping(85)); let m = n.reverse_bits(); assert_eq!(m.0 as u16, 0b10101010_00000000); assert_eq!(m, Wrapping(-22016));
pub const fn from_be(x: Wrapping<u32>) -> Wrapping<u32>
wrapping_int_impl #32463)
Converts an integer from big endian to the target’s endianness.
On big endian this is a no-op. On little endian the bytes are swapped.
Basic usage:
#![feature(wrapping_int_impl)]
use std::num::Wrapping;
let n = Wrapping(0x1Au32);
if cfg!(target_endian = "big") {
assert_eq!(<Wrapping<u32>>::from_be(n), n)
} else {
assert_eq!(<Wrapping<u32>>::from_be(n), n.swap_bytes())
}pub const fn from_le(x: Wrapping<u32>) -> Wrapping<u32>
wrapping_int_impl #32463)
Converts an integer from little endian to the target’s endianness.
On little endian this is a no-op. On big endian the bytes are swapped.
Basic usage:
#![feature(wrapping_int_impl)]
use std::num::Wrapping;
let n = Wrapping(0x1Au32);
if cfg!(target_endian = "little") {
assert_eq!(<Wrapping<u32>>::from_le(n), n)
} else {
assert_eq!(<Wrapping<u32>>::from_le(n), n.swap_bytes())
}pub const fn to_be(self) -> Wrapping<u32>
wrapping_int_impl #32463)
Converts self to big endian from the target’s endianness.
On big endian this is a no-op. On little endian the bytes are swapped.
Basic usage:
#![feature(wrapping_int_impl)]
use std::num::Wrapping;
let n = Wrapping(0x1Au32);
if cfg!(target_endian = "big") {
assert_eq!(n.to_be(), n)
} else {
assert_eq!(n.to_be(), n.swap_bytes())
}pub const fn to_le(self) -> Wrapping<u32>
wrapping_int_impl #32463)
Converts self to little endian from the target’s endianness.
On little endian this is a no-op. On big endian the bytes are swapped.
Basic usage:
#![feature(wrapping_int_impl)]
use std::num::Wrapping;
let n = Wrapping(0x1Au32);
if cfg!(target_endian = "little") {
assert_eq!(n.to_le(), n)
} else {
assert_eq!(n.to_le(), n.swap_bytes())
}pub fn pow(self, exp: u32) -> Wrapping<u32>
wrapping_int_impl #32463)
Raises self to the power of exp, using exponentiation by squaring.
Basic usage:
#![feature(wrapping_int_impl)] use std::num::Wrapping; assert_eq!(Wrapping(3u32).pow(4), Wrapping(81));
Results that are too large are wrapped:
#![feature(wrapping_int_impl)] use std::num::Wrapping; assert_eq!(Wrapping(3i8).pow(5), Wrapping(-13)); assert_eq!(Wrapping(3i8).pow(6), Wrapping(-39));
impl Wrapping<u64>
pub const MIN: Wrapping<u64>
wrapping_int_impl #32463)
Returns the smallest value that can be represented by this integer type.
Basic usage:
#![feature(wrapping_int_impl)] use std::num::Wrapping; assert_eq!(<Wrapping<u64>>::MIN, Wrapping(u64::MIN));
pub const MAX: Wrapping<u64>
wrapping_int_impl #32463)
Returns the largest value that can be represented by this integer type.
Basic usage:
#![feature(wrapping_int_impl)] use std::num::Wrapping; assert_eq!(<Wrapping<u64>>::MAX, Wrapping(u64::MAX));
pub const BITS: u32 = u64::BITS
wrapping_int_impl #32463)
Returns the size of this integer type in bits.
Basic usage:
#![feature(wrapping_int_impl)] use std::num::Wrapping; assert_eq!(<Wrapping<u64>>::BITS, u64::BITS);
pub const fn count_ones(self) -> u32
wrapping_int_impl #32463)
Returns the number of ones in the binary representation of self.
Basic usage:
#![feature(wrapping_int_impl)] use std::num::Wrapping; let n = Wrapping(0b01001100u64); assert_eq!(n.count_ones(), 3);
pub const fn count_zeros(self) -> u32
wrapping_int_impl #32463)
Returns the number of zeros in the binary representation of self.
Basic usage:
#![feature(wrapping_int_impl)] use std::num::Wrapping; assert_eq!(Wrapping(!0u64).count_zeros(), 0);
pub const fn trailing_zeros(self) -> u32
wrapping_int_impl #32463)
Returns the number of trailing zeros in the binary representation of self.
Basic usage:
#![feature(wrapping_int_impl)] use std::num::Wrapping; let n = Wrapping(0b0101000u64); assert_eq!(n.trailing_zeros(), 3);
pub const fn rotate_left(self, n: u32) -> Wrapping<u64>
wrapping_int_impl #32463)
Shifts the bits to the left by a specified amount, n, wrapping the truncated bits to the end of the resulting integer.
Please note this isn’t the same operation as the << shifting operator!
Basic usage:
#![feature(wrapping_int_impl)] use std::num::Wrapping; let n: Wrapping<i64> = Wrapping(0x0123456789ABCDEF); let m: Wrapping<i64> = Wrapping(-0x76543210FEDCBA99); assert_eq!(n.rotate_left(32), m);
pub const fn rotate_right(self, n: u32) -> Wrapping<u64>
wrapping_int_impl #32463)
Shifts the bits to the right by a specified amount, n, wrapping the truncated bits to the beginning of the resulting integer.
Please note this isn’t the same operation as the >> shifting operator!
Basic usage:
#![feature(wrapping_int_impl)] use std::num::Wrapping; let n: Wrapping<i64> = Wrapping(0x0123456789ABCDEF); let m: Wrapping<i64> = Wrapping(-0xFEDCBA987654322); assert_eq!(n.rotate_right(4), m);
pub const fn swap_bytes(self) -> Wrapping<u64>
wrapping_int_impl #32463)
Reverses the byte order of the integer.
Basic usage:
#![feature(wrapping_int_impl)] use std::num::Wrapping; let n: Wrapping<i16> = Wrapping(0b0000000_01010101); assert_eq!(n, Wrapping(85)); let m = n.swap_bytes(); assert_eq!(m, Wrapping(0b01010101_00000000)); assert_eq!(m, Wrapping(21760));
pub const fn reverse_bits(self) -> Wrapping<u64>
Reverses the bit pattern of the integer.
Please note that this example is shared among integer types, which is why i16 is used.
Basic usage:
use std::num::Wrapping; let n = Wrapping(0b0000000_01010101i16); assert_eq!(n, Wrapping(85)); let m = n.reverse_bits(); assert_eq!(m.0 as u16, 0b10101010_00000000); assert_eq!(m, Wrapping(-22016));
pub const fn from_be(x: Wrapping<u64>) -> Wrapping<u64>
wrapping_int_impl #32463)
Converts an integer from big endian to the target’s endianness.
On big endian this is a no-op. On little endian the bytes are swapped.
Basic usage:
#![feature(wrapping_int_impl)]
use std::num::Wrapping;
let n = Wrapping(0x1Au64);
if cfg!(target_endian = "big") {
assert_eq!(<Wrapping<u64>>::from_be(n), n)
} else {
assert_eq!(<Wrapping<u64>>::from_be(n), n.swap_bytes())
}pub const fn from_le(x: Wrapping<u64>) -> Wrapping<u64>
wrapping_int_impl #32463)
Converts an integer from little endian to the target’s endianness.
On little endian this is a no-op. On big endian the bytes are swapped.
Basic usage:
#![feature(wrapping_int_impl)]
use std::num::Wrapping;
let n = Wrapping(0x1Au64);
if cfg!(target_endian = "little") {
assert_eq!(<Wrapping<u64>>::from_le(n), n)
} else {
assert_eq!(<Wrapping<u64>>::from_le(n), n.swap_bytes())
}pub const fn to_be(self) -> Wrapping<u64>
wrapping_int_impl #32463)
Converts self to big endian from the target’s endianness.
On big endian this is a no-op. On little endian the bytes are swapped.
Basic usage:
#![feature(wrapping_int_impl)]
use std::num::Wrapping;
let n = Wrapping(0x1Au64);
if cfg!(target_endian = "big") {
assert_eq!(n.to_be(), n)
} else {
assert_eq!(n.to_be(), n.swap_bytes())
}pub const fn to_le(self) -> Wrapping<u64>
wrapping_int_impl #32463)
Converts self to little endian from the target’s endianness.
On little endian this is a no-op. On big endian the bytes are swapped.
Basic usage:
#![feature(wrapping_int_impl)]
use std::num::Wrapping;
let n = Wrapping(0x1Au64);
if cfg!(target_endian = "little") {
assert_eq!(n.to_le(), n)
} else {
assert_eq!(n.to_le(), n.swap_bytes())
}pub fn pow(self, exp: u32) -> Wrapping<u64>
wrapping_int_impl #32463)
Raises self to the power of exp, using exponentiation by squaring.
Basic usage:
#![feature(wrapping_int_impl)] use std::num::Wrapping; assert_eq!(Wrapping(3u64).pow(4), Wrapping(81));
Results that are too large are wrapped:
#![feature(wrapping_int_impl)] use std::num::Wrapping; assert_eq!(Wrapping(3i8).pow(5), Wrapping(-13)); assert_eq!(Wrapping(3i8).pow(6), Wrapping(-39));
impl Wrapping<u128>
pub const MIN: Wrapping<u128>
wrapping_int_impl #32463)
Returns the smallest value that can be represented by this integer type.
Basic usage:
#![feature(wrapping_int_impl)] use std::num::Wrapping; assert_eq!(<Wrapping<u128>>::MIN, Wrapping(u128::MIN));
pub const MAX: Wrapping<u128>
wrapping_int_impl #32463)
Returns the largest value that can be represented by this integer type.
Basic usage:
#![feature(wrapping_int_impl)] use std::num::Wrapping; assert_eq!(<Wrapping<u128>>::MAX, Wrapping(u128::MAX));
pub const BITS: u32 = u128::BITS
wrapping_int_impl #32463)
Returns the size of this integer type in bits.
Basic usage:
#![feature(wrapping_int_impl)] use std::num::Wrapping; assert_eq!(<Wrapping<u128>>::BITS, u128::BITS);
pub const fn count_ones(self) -> u32
wrapping_int_impl #32463)
Returns the number of ones in the binary representation of self.
Basic usage:
#![feature(wrapping_int_impl)] use std::num::Wrapping; let n = Wrapping(0b01001100u128); assert_eq!(n.count_ones(), 3);
pub const fn count_zeros(self) -> u32
wrapping_int_impl #32463)
Returns the number of zeros in the binary representation of self.
Basic usage:
#![feature(wrapping_int_impl)] use std::num::Wrapping; assert_eq!(Wrapping(!0u128).count_zeros(), 0);
pub const fn trailing_zeros(self) -> u32
wrapping_int_impl #32463)
Returns the number of trailing zeros in the binary representation of self.
Basic usage:
#![feature(wrapping_int_impl)] use std::num::Wrapping; let n = Wrapping(0b0101000u128); assert_eq!(n.trailing_zeros(), 3);
pub const fn rotate_left(self, n: u32) -> Wrapping<u128>
wrapping_int_impl #32463)
Shifts the bits to the left by a specified amount, n, wrapping the truncated bits to the end of the resulting integer.
Please note this isn’t the same operation as the << shifting operator!
Basic usage:
#![feature(wrapping_int_impl)] use std::num::Wrapping; let n: Wrapping<i64> = Wrapping(0x0123456789ABCDEF); let m: Wrapping<i64> = Wrapping(-0x76543210FEDCBA99); assert_eq!(n.rotate_left(32), m);
pub const fn rotate_right(self, n: u32) -> Wrapping<u128>
wrapping_int_impl #32463)
Shifts the bits to the right by a specified amount, n, wrapping the truncated bits to the beginning of the resulting integer.
Please note this isn’t the same operation as the >> shifting operator!
Basic usage:
#![feature(wrapping_int_impl)] use std::num::Wrapping; let n: Wrapping<i64> = Wrapping(0x0123456789ABCDEF); let m: Wrapping<i64> = Wrapping(-0xFEDCBA987654322); assert_eq!(n.rotate_right(4), m);
pub const fn swap_bytes(self) -> Wrapping<u128>
wrapping_int_impl #32463)
Reverses the byte order of the integer.
Basic usage:
#![feature(wrapping_int_impl)] use std::num::Wrapping; let n: Wrapping<i16> = Wrapping(0b0000000_01010101); assert_eq!(n, Wrapping(85)); let m = n.swap_bytes(); assert_eq!(m, Wrapping(0b01010101_00000000)); assert_eq!(m, Wrapping(21760));
pub const fn reverse_bits(self) -> Wrapping<u128>
Reverses the bit pattern of the integer.
Please note that this example is shared among integer types, which is why i16 is used.
Basic usage:
use std::num::Wrapping; let n = Wrapping(0b0000000_01010101i16); assert_eq!(n, Wrapping(85)); let m = n.reverse_bits(); assert_eq!(m.0 as u16, 0b10101010_00000000); assert_eq!(m, Wrapping(-22016));
pub const fn from_be(x: Wrapping<u128>) -> Wrapping<u128>
wrapping_int_impl #32463)
Converts an integer from big endian to the target’s endianness.
On big endian this is a no-op. On little endian the bytes are swapped.
Basic usage:
#![feature(wrapping_int_impl)]
use std::num::Wrapping;
let n = Wrapping(0x1Au128);
if cfg!(target_endian = "big") {
assert_eq!(<Wrapping<u128>>::from_be(n), n)
} else {
assert_eq!(<Wrapping<u128>>::from_be(n), n.swap_bytes())
}pub const fn from_le(x: Wrapping<u128>) -> Wrapping<u128>
wrapping_int_impl #32463)
Converts an integer from little endian to the target’s endianness.
On little endian this is a no-op. On big endian the bytes are swapped.
Basic usage:
#![feature(wrapping_int_impl)]
use std::num::Wrapping;
let n = Wrapping(0x1Au128);
if cfg!(target_endian = "little") {
assert_eq!(<Wrapping<u128>>::from_le(n), n)
} else {
assert_eq!(<Wrapping<u128>>::from_le(n), n.swap_bytes())
}pub const fn to_be(self) -> Wrapping<u128>
wrapping_int_impl #32463)
Converts self to big endian from the target’s endianness.
On big endian this is a no-op. On little endian the bytes are swapped.
Basic usage:
#![feature(wrapping_int_impl)]
use std::num::Wrapping;
let n = Wrapping(0x1Au128);
if cfg!(target_endian = "big") {
assert_eq!(n.to_be(), n)
} else {
assert_eq!(n.to_be(), n.swap_bytes())
}pub const fn to_le(self) -> Wrapping<u128>
wrapping_int_impl #32463)
Converts self to little endian from the target’s endianness.
On little endian this is a no-op. On big endian the bytes are swapped.
Basic usage:
#![feature(wrapping_int_impl)]
use std::num::Wrapping;
let n = Wrapping(0x1Au128);
if cfg!(target_endian = "little") {
assert_eq!(n.to_le(), n)
} else {
assert_eq!(n.to_le(), n.swap_bytes())
}pub fn pow(self, exp: u32) -> Wrapping<u128>
wrapping_int_impl #32463)
Raises self to the power of exp, using exponentiation by squaring.
Basic usage:
#![feature(wrapping_int_impl)] use std::num::Wrapping; assert_eq!(Wrapping(3u128).pow(4), Wrapping(81));
Results that are too large are wrapped:
#![feature(wrapping_int_impl)] use std::num::Wrapping; assert_eq!(Wrapping(3i8).pow(5), Wrapping(-13)); assert_eq!(Wrapping(3i8).pow(6), Wrapping(-39));
impl Wrapping<isize>
pub const MIN: Wrapping<isize>
wrapping_int_impl #32463)
Returns the smallest value that can be represented by this integer type.
Basic usage:
#![feature(wrapping_int_impl)] use std::num::Wrapping; assert_eq!(<Wrapping<isize>>::MIN, Wrapping(isize::MIN));
pub const MAX: Wrapping<isize>
wrapping_int_impl #32463)
Returns the largest value that can be represented by this integer type.
Basic usage:
#![feature(wrapping_int_impl)] use std::num::Wrapping; assert_eq!(<Wrapping<isize>>::MAX, Wrapping(isize::MAX));
pub const BITS: u32 = isize::BITS
wrapping_int_impl #32463)
Returns the size of this integer type in bits.
Basic usage:
#![feature(wrapping_int_impl)] use std::num::Wrapping; assert_eq!(<Wrapping<isize>>::BITS, isize::BITS);
pub const fn count_ones(self) -> u32
wrapping_int_impl #32463)
Returns the number of ones in the binary representation of self.
Basic usage:
#![feature(wrapping_int_impl)] use std::num::Wrapping; let n = Wrapping(0b01001100isize); assert_eq!(n.count_ones(), 3);
pub const fn count_zeros(self) -> u32
wrapping_int_impl #32463)
Returns the number of zeros in the binary representation of self.
Basic usage:
#![feature(wrapping_int_impl)] use std::num::Wrapping; assert_eq!(Wrapping(!0isize).count_zeros(), 0);
pub const fn trailing_zeros(self) -> u32
wrapping_int_impl #32463)
Returns the number of trailing zeros in the binary representation of self.
Basic usage:
#![feature(wrapping_int_impl)] use std::num::Wrapping; let n = Wrapping(0b0101000isize); assert_eq!(n.trailing_zeros(), 3);
pub const fn rotate_left(self, n: u32) -> Wrapping<isize>
wrapping_int_impl #32463)
Shifts the bits to the left by a specified amount, n, wrapping the truncated bits to the end of the resulting integer.
Please note this isn’t the same operation as the << shifting operator!
Basic usage:
#![feature(wrapping_int_impl)] use std::num::Wrapping; let n: Wrapping<i64> = Wrapping(0x0123456789ABCDEF); let m: Wrapping<i64> = Wrapping(-0x76543210FEDCBA99); assert_eq!(n.rotate_left(32), m);
pub const fn rotate_right(self, n: u32) -> Wrapping<isize>
wrapping_int_impl #32463)
Shifts the bits to the right by a specified amount, n, wrapping the truncated bits to the beginning of the resulting integer.
Please note this isn’t the same operation as the >> shifting operator!
Basic usage:
#![feature(wrapping_int_impl)] use std::num::Wrapping; let n: Wrapping<i64> = Wrapping(0x0123456789ABCDEF); let m: Wrapping<i64> = Wrapping(-0xFEDCBA987654322); assert_eq!(n.rotate_right(4), m);
pub const fn swap_bytes(self) -> Wrapping<isize>
wrapping_int_impl #32463)
Reverses the byte order of the integer.
Basic usage:
#![feature(wrapping_int_impl)] use std::num::Wrapping; let n: Wrapping<i16> = Wrapping(0b0000000_01010101); assert_eq!(n, Wrapping(85)); let m = n.swap_bytes(); assert_eq!(m, Wrapping(0b01010101_00000000)); assert_eq!(m, Wrapping(21760));
pub const fn reverse_bits(self) -> Wrapping<isize>
Reverses the bit pattern of the integer.
Please note that this example is shared among integer types, which is why i16 is used.
Basic usage:
use std::num::Wrapping; let n = Wrapping(0b0000000_01010101i16); assert_eq!(n, Wrapping(85)); let m = n.reverse_bits(); assert_eq!(m.0 as u16, 0b10101010_00000000); assert_eq!(m, Wrapping(-22016));
pub const fn from_be(x: Wrapping<isize>) -> Wrapping<isize>
wrapping_int_impl #32463)
Converts an integer from big endian to the target’s endianness.
On big endian this is a no-op. On little endian the bytes are swapped.
Basic usage:
#![feature(wrapping_int_impl)]
use std::num::Wrapping;
let n = Wrapping(0x1Aisize);
if cfg!(target_endian = "big") {
assert_eq!(<Wrapping<isize>>::from_be(n), n)
} else {
assert_eq!(<Wrapping<isize>>::from_be(n), n.swap_bytes())
}pub const fn from_le(x: Wrapping<isize>) -> Wrapping<isize>
wrapping_int_impl #32463)
Converts an integer from little endian to the target’s endianness.
On little endian this is a no-op. On big endian the bytes are swapped.
Basic usage:
#![feature(wrapping_int_impl)]
use std::num::Wrapping;
let n = Wrapping(0x1Aisize);
if cfg!(target_endian = "little") {
assert_eq!(<Wrapping<isize>>::from_le(n), n)
} else {
assert_eq!(<Wrapping<isize>>::from_le(n), n.swap_bytes())
}pub const fn to_be(self) -> Wrapping<isize>
wrapping_int_impl #32463)
Converts self to big endian from the target’s endianness.
On big endian this is a no-op. On little endian the bytes are swapped.
Basic usage:
#![feature(wrapping_int_impl)]
use std::num::Wrapping;
let n = Wrapping(0x1Aisize);
if cfg!(target_endian = "big") {
assert_eq!(n.to_be(), n)
} else {
assert_eq!(n.to_be(), n.swap_bytes())
}pub const fn to_le(self) -> Wrapping<isize>
wrapping_int_impl #32463)
Converts self to little endian from the target’s endianness.
On little endian this is a no-op. On big endian the bytes are swapped.
Basic usage:
#![feature(wrapping_int_impl)]
use std::num::Wrapping;
let n = Wrapping(0x1Aisize);
if cfg!(target_endian = "little") {
assert_eq!(n.to_le(), n)
} else {
assert_eq!(n.to_le(), n.swap_bytes())
}pub fn pow(self, exp: u32) -> Wrapping<isize>
wrapping_int_impl #32463)
Raises self to the power of exp, using exponentiation by squaring.
Basic usage:
#![feature(wrapping_int_impl)] use std::num::Wrapping; assert_eq!(Wrapping(3isize).pow(4), Wrapping(81));
Results that are too large are wrapped:
#![feature(wrapping_int_impl)] use std::num::Wrapping; assert_eq!(Wrapping(3i8).pow(5), Wrapping(-13)); assert_eq!(Wrapping(3i8).pow(6), Wrapping(-39));
impl Wrapping<i8>
pub const MIN: Wrapping<i8>
wrapping_int_impl #32463)
Returns the smallest value that can be represented by this integer type.
Basic usage:
#![feature(wrapping_int_impl)] use std::num::Wrapping; assert_eq!(<Wrapping<i8>>::MIN, Wrapping(i8::MIN));
pub const MAX: Wrapping<i8>
wrapping_int_impl #32463)
Returns the largest value that can be represented by this integer type.
Basic usage:
#![feature(wrapping_int_impl)] use std::num::Wrapping; assert_eq!(<Wrapping<i8>>::MAX, Wrapping(i8::MAX));
pub const BITS: u32 = i8::BITS
wrapping_int_impl #32463)
Returns the size of this integer type in bits.
Basic usage:
#![feature(wrapping_int_impl)] use std::num::Wrapping; assert_eq!(<Wrapping<i8>>::BITS, i8::BITS);
pub const fn count_ones(self) -> u32
wrapping_int_impl #32463)
Returns the number of ones in the binary representation of self.
Basic usage:
#![feature(wrapping_int_impl)] use std::num::Wrapping; let n = Wrapping(0b01001100i8); assert_eq!(n.count_ones(), 3);
pub const fn count_zeros(self) -> u32
wrapping_int_impl #32463)
Returns the number of zeros in the binary representation of self.
Basic usage:
#![feature(wrapping_int_impl)] use std::num::Wrapping; assert_eq!(Wrapping(!0i8).count_zeros(), 0);
pub const fn trailing_zeros(self) -> u32
wrapping_int_impl #32463)
Returns the number of trailing zeros in the binary representation of self.
Basic usage:
#![feature(wrapping_int_impl)] use std::num::Wrapping; let n = Wrapping(0b0101000i8); assert_eq!(n.trailing_zeros(), 3);
pub const fn rotate_left(self, n: u32) -> Wrapping<i8>
wrapping_int_impl #32463)
Shifts the bits to the left by a specified amount, n, wrapping the truncated bits to the end of the resulting integer.
Please note this isn’t the same operation as the << shifting operator!
Basic usage:
#![feature(wrapping_int_impl)] use std::num::Wrapping; let n: Wrapping<i64> = Wrapping(0x0123456789ABCDEF); let m: Wrapping<i64> = Wrapping(-0x76543210FEDCBA99); assert_eq!(n.rotate_left(32), m);
pub const fn rotate_right(self, n: u32) -> Wrapping<i8>
wrapping_int_impl #32463)
Shifts the bits to the right by a specified amount, n, wrapping the truncated bits to the beginning of the resulting integer.
Please note this isn’t the same operation as the >> shifting operator!
Basic usage:
#![feature(wrapping_int_impl)] use std::num::Wrapping; let n: Wrapping<i64> = Wrapping(0x0123456789ABCDEF); let m: Wrapping<i64> = Wrapping(-0xFEDCBA987654322); assert_eq!(n.rotate_right(4), m);
pub const fn swap_bytes(self) -> Wrapping<i8>
wrapping_int_impl #32463)
Reverses the byte order of the integer.
Basic usage:
#![feature(wrapping_int_impl)] use std::num::Wrapping; let n: Wrapping<i16> = Wrapping(0b0000000_01010101); assert_eq!(n, Wrapping(85)); let m = n.swap_bytes(); assert_eq!(m, Wrapping(0b01010101_00000000)); assert_eq!(m, Wrapping(21760));
pub const fn reverse_bits(self) -> Wrapping<i8>
Reverses the bit pattern of the integer.
Please note that this example is shared among integer types, which is why i16 is used.
Basic usage:
use std::num::Wrapping; let n = Wrapping(0b0000000_01010101i16); assert_eq!(n, Wrapping(85)); let m = n.reverse_bits(); assert_eq!(m.0 as u16, 0b10101010_00000000); assert_eq!(m, Wrapping(-22016));
pub const fn from_be(x: Wrapping<i8>) -> Wrapping<i8>
wrapping_int_impl #32463)
Converts an integer from big endian to the target’s endianness.
On big endian this is a no-op. On little endian the bytes are swapped.
Basic usage:
#![feature(wrapping_int_impl)]
use std::num::Wrapping;
let n = Wrapping(0x1Ai8);
if cfg!(target_endian = "big") {
assert_eq!(<Wrapping<i8>>::from_be(n), n)
} else {
assert_eq!(<Wrapping<i8>>::from_be(n), n.swap_bytes())
}pub const fn from_le(x: Wrapping<i8>) -> Wrapping<i8>
wrapping_int_impl #32463)
Converts an integer from little endian to the target’s endianness.
On little endian this is a no-op. On big endian the bytes are swapped.
Basic usage:
#![feature(wrapping_int_impl)]
use std::num::Wrapping;
let n = Wrapping(0x1Ai8);
if cfg!(target_endian = "little") {
assert_eq!(<Wrapping<i8>>::from_le(n), n)
} else {
assert_eq!(<Wrapping<i8>>::from_le(n), n.swap_bytes())
}pub const fn to_be(self) -> Wrapping<i8>
wrapping_int_impl #32463)
Converts self to big endian from the target’s endianness.
On big endian this is a no-op. On little endian the bytes are swapped.
Basic usage:
#![feature(wrapping_int_impl)]
use std::num::Wrapping;
let n = Wrapping(0x1Ai8);
if cfg!(target_endian = "big") {
assert_eq!(n.to_be(), n)
} else {
assert_eq!(n.to_be(), n.swap_bytes())
}pub const fn to_le(self) -> Wrapping<i8>
wrapping_int_impl #32463)
Converts self to little endian from the target’s endianness.
On little endian this is a no-op. On big endian the bytes are swapped.
Basic usage:
#![feature(wrapping_int_impl)]
use std::num::Wrapping;
let n = Wrapping(0x1Ai8);
if cfg!(target_endian = "little") {
assert_eq!(n.to_le(), n)
} else {
assert_eq!(n.to_le(), n.swap_bytes())
}pub fn pow(self, exp: u32) -> Wrapping<i8>
wrapping_int_impl #32463)
Raises self to the power of exp, using exponentiation by squaring.
Basic usage:
#![feature(wrapping_int_impl)] use std::num::Wrapping; assert_eq!(Wrapping(3i8).pow(4), Wrapping(81));
Results that are too large are wrapped:
#![feature(wrapping_int_impl)] use std::num::Wrapping; assert_eq!(Wrapping(3i8).pow(5), Wrapping(-13)); assert_eq!(Wrapping(3i8).pow(6), Wrapping(-39));
impl Wrapping<i16>
pub const MIN: Wrapping<i16>
wrapping_int_impl #32463)
Returns the smallest value that can be represented by this integer type.
Basic usage:
#![feature(wrapping_int_impl)] use std::num::Wrapping; assert_eq!(<Wrapping<i16>>::MIN, Wrapping(i16::MIN));
pub const MAX: Wrapping<i16>
wrapping_int_impl #32463)
Returns the largest value that can be represented by this integer type.
Basic usage:
#![feature(wrapping_int_impl)] use std::num::Wrapping; assert_eq!(<Wrapping<i16>>::MAX, Wrapping(i16::MAX));
pub const BITS: u32 = i16::BITS
wrapping_int_impl #32463)
Returns the size of this integer type in bits.
Basic usage:
#![feature(wrapping_int_impl)] use std::num::Wrapping; assert_eq!(<Wrapping<i16>>::BITS, i16::BITS);
pub const fn count_ones(self) -> u32
wrapping_int_impl #32463)
Returns the number of ones in the binary representation of self.
Basic usage:
#![feature(wrapping_int_impl)] use std::num::Wrapping; let n = Wrapping(0b01001100i16); assert_eq!(n.count_ones(), 3);
pub const fn count_zeros(self) -> u32
wrapping_int_impl #32463)
Returns the number of zeros in the binary representation of self.
Basic usage:
#![feature(wrapping_int_impl)] use std::num::Wrapping; assert_eq!(Wrapping(!0i16).count_zeros(), 0);
pub const fn trailing_zeros(self) -> u32
wrapping_int_impl #32463)
Returns the number of trailing zeros in the binary representation of self.
Basic usage:
#![feature(wrapping_int_impl)] use std::num::Wrapping; let n = Wrapping(0b0101000i16); assert_eq!(n.trailing_zeros(), 3);
pub const fn rotate_left(self, n: u32) -> Wrapping<i16>
wrapping_int_impl #32463)
Shifts the bits to the left by a specified amount, n, wrapping the truncated bits to the end of the resulting integer.
Please note this isn’t the same operation as the << shifting operator!
Basic usage:
#![feature(wrapping_int_impl)] use std::num::Wrapping; let n: Wrapping<i64> = Wrapping(0x0123456789ABCDEF); let m: Wrapping<i64> = Wrapping(-0x76543210FEDCBA99); assert_eq!(n.rotate_left(32), m);
pub const fn rotate_right(self, n: u32) -> Wrapping<i16>
wrapping_int_impl #32463)
Shifts the bits to the right by a specified amount, n, wrapping the truncated bits to the beginning of the resulting integer.
Please note this isn’t the same operation as the >> shifting operator!
Basic usage:
#![feature(wrapping_int_impl)] use std::num::Wrapping; let n: Wrapping<i64> = Wrapping(0x0123456789ABCDEF); let m: Wrapping<i64> = Wrapping(-0xFEDCBA987654322); assert_eq!(n.rotate_right(4), m);
pub const fn swap_bytes(self) -> Wrapping<i16>
wrapping_int_impl #32463)
Reverses the byte order of the integer.
Basic usage:
#![feature(wrapping_int_impl)] use std::num::Wrapping; let n: Wrapping<i16> = Wrapping(0b0000000_01010101); assert_eq!(n, Wrapping(85)); let m = n.swap_bytes(); assert_eq!(m, Wrapping(0b01010101_00000000)); assert_eq!(m, Wrapping(21760));
pub const fn reverse_bits(self) -> Wrapping<i16>
Reverses the bit pattern of the integer.
Please note that this example is shared among integer types, which is why i16 is used.
Basic usage:
use std::num::Wrapping; let n = Wrapping(0b0000000_01010101i16); assert_eq!(n, Wrapping(85)); let m = n.reverse_bits(); assert_eq!(m.0 as u16, 0b10101010_00000000); assert_eq!(m, Wrapping(-22016));
pub const fn from_be(x: Wrapping<i16>) -> Wrapping<i16>
wrapping_int_impl #32463)
Converts an integer from big endian to the target’s endianness.
On big endian this is a no-op. On little endian the bytes are swapped.
Basic usage:
#![feature(wrapping_int_impl)]
use std::num::Wrapping;
let n = Wrapping(0x1Ai16);
if cfg!(target_endian = "big") {
assert_eq!(<Wrapping<i16>>::from_be(n), n)
} else {
assert_eq!(<Wrapping<i16>>::from_be(n), n.swap_bytes())
}pub const fn from_le(x: Wrapping<i16>) -> Wrapping<i16>
wrapping_int_impl #32463)
Converts an integer from little endian to the target’s endianness.
On little endian this is a no-op. On big endian the bytes are swapped.
Basic usage:
#![feature(wrapping_int_impl)]
use std::num::Wrapping;
let n = Wrapping(0x1Ai16);
if cfg!(target_endian = "little") {
assert_eq!(<Wrapping<i16>>::from_le(n), n)
} else {
assert_eq!(<Wrapping<i16>>::from_le(n), n.swap_bytes())
}pub const fn to_be(self) -> Wrapping<i16>
wrapping_int_impl #32463)
Converts self to big endian from the target’s endianness.
On big endian this is a no-op. On little endian the bytes are swapped.
Basic usage:
#![feature(wrapping_int_impl)]
use std::num::Wrapping;
let n = Wrapping(0x1Ai16);
if cfg!(target_endian = "big") {
assert_eq!(n.to_be(), n)
} else {
assert_eq!(n.to_be(), n.swap_bytes())
}pub const fn to_le(self) -> Wrapping<i16>
wrapping_int_impl #32463)
Converts self to little endian from the target’s endianness.
On little endian this is a no-op. On big endian the bytes are swapped.
Basic usage:
#![feature(wrapping_int_impl)]
use std::num::Wrapping;
let n = Wrapping(0x1Ai16);
if cfg!(target_endian = "little") {
assert_eq!(n.to_le(), n)
} else {
assert_eq!(n.to_le(), n.swap_bytes())
}pub fn pow(self, exp: u32) -> Wrapping<i16>
wrapping_int_impl #32463)
Raises self to the power of exp, using exponentiation by squaring.
Basic usage:
#![feature(wrapping_int_impl)] use std::num::Wrapping; assert_eq!(Wrapping(3i16).pow(4), Wrapping(81));
Results that are too large are wrapped:
#![feature(wrapping_int_impl)] use std::num::Wrapping; assert_eq!(Wrapping(3i8).pow(5), Wrapping(-13)); assert_eq!(Wrapping(3i8).pow(6), Wrapping(-39));
impl Wrapping<i32>
pub const MIN: Wrapping<i32>
wrapping_int_impl #32463)
Returns the smallest value that can be represented by this integer type.
Basic usage:
#![feature(wrapping_int_impl)] use std::num::Wrapping; assert_eq!(<Wrapping<i32>>::MIN, Wrapping(i32::MIN));
pub const MAX: Wrapping<i32>
wrapping_int_impl #32463)
Returns the largest value that can be represented by this integer type.
Basic usage:
#![feature(wrapping_int_impl)] use std::num::Wrapping; assert_eq!(<Wrapping<i32>>::MAX, Wrapping(i32::MAX));
pub const BITS: u32 = i32::BITS
wrapping_int_impl #32463)
Returns the size of this integer type in bits.
Basic usage:
#![feature(wrapping_int_impl)] use std::num::Wrapping; assert_eq!(<Wrapping<i32>>::BITS, i32::BITS);
pub const fn count_ones(self) -> u32
wrapping_int_impl #32463)
Returns the number of ones in the binary representation of self.
Basic usage:
#![feature(wrapping_int_impl)] use std::num::Wrapping; let n = Wrapping(0b01001100i32); assert_eq!(n.count_ones(), 3);
pub const fn count_zeros(self) -> u32
wrapping_int_impl #32463)
Returns the number of zeros in the binary representation of self.
Basic usage:
#![feature(wrapping_int_impl)] use std::num::Wrapping; assert_eq!(Wrapping(!0i32).count_zeros(), 0);
pub const fn trailing_zeros(self) -> u32
wrapping_int_impl #32463)
Returns the number of trailing zeros in the binary representation of self.
Basic usage:
#![feature(wrapping_int_impl)] use std::num::Wrapping; let n = Wrapping(0b0101000i32); assert_eq!(n.trailing_zeros(), 3);
pub const fn rotate_left(self, n: u32) -> Wrapping<i32>
wrapping_int_impl #32463)
Shifts the bits to the left by a specified amount, n, wrapping the truncated bits to the end of the resulting integer.
Please note this isn’t the same operation as the << shifting operator!
Basic usage:
#![feature(wrapping_int_impl)] use std::num::Wrapping; let n: Wrapping<i64> = Wrapping(0x0123456789ABCDEF); let m: Wrapping<i64> = Wrapping(-0x76543210FEDCBA99); assert_eq!(n.rotate_left(32), m);
pub const fn rotate_right(self, n: u32) -> Wrapping<i32>
wrapping_int_impl #32463)
Shifts the bits to the right by a specified amount, n, wrapping the truncated bits to the beginning of the resulting integer.
Please note this isn’t the same operation as the >> shifting operator!
Basic usage:
#![feature(wrapping_int_impl)] use std::num::Wrapping; let n: Wrapping<i64> = Wrapping(0x0123456789ABCDEF); let m: Wrapping<i64> = Wrapping(-0xFEDCBA987654322); assert_eq!(n.rotate_right(4), m);
pub const fn swap_bytes(self) -> Wrapping<i32>
wrapping_int_impl #32463)
Reverses the byte order of the integer.
Basic usage:
#![feature(wrapping_int_impl)] use std::num::Wrapping; let n: Wrapping<i16> = Wrapping(0b0000000_01010101); assert_eq!(n, Wrapping(85)); let m = n.swap_bytes(); assert_eq!(m, Wrapping(0b01010101_00000000)); assert_eq!(m, Wrapping(21760));
pub const fn reverse_bits(self) -> Wrapping<i32>
Reverses the bit pattern of the integer.
Please note that this example is shared among integer types, which is why i16 is used.
Basic usage:
use std::num::Wrapping; let n = Wrapping(0b0000000_01010101i16); assert_eq!(n, Wrapping(85)); let m = n.reverse_bits(); assert_eq!(m.0 as u16, 0b10101010_00000000); assert_eq!(m, Wrapping(-22016));
pub const fn from_be(x: Wrapping<i32>) -> Wrapping<i32>
wrapping_int_impl #32463)
Converts an integer from big endian to the target’s endianness.
On big endian this is a no-op. On little endian the bytes are swapped.
Basic usage:
#![feature(wrapping_int_impl)]
use std::num::Wrapping;
let n = Wrapping(0x1Ai32);
if cfg!(target_endian = "big") {
assert_eq!(<Wrapping<i32>>::from_be(n), n)
} else {
assert_eq!(<Wrapping<i32>>::from_be(n), n.swap_bytes())
}pub const fn from_le(x: Wrapping<i32>) -> Wrapping<i32>
wrapping_int_impl #32463)
Converts an integer from little endian to the target’s endianness.
On little endian this is a no-op. On big endian the bytes are swapped.
Basic usage:
#![feature(wrapping_int_impl)]
use std::num::Wrapping;
let n = Wrapping(0x1Ai32);
if cfg!(target_endian = "little") {
assert_eq!(<Wrapping<i32>>::from_le(n), n)
} else {
assert_eq!(<Wrapping<i32>>::from_le(n), n.swap_bytes())
}pub const fn to_be(self) -> Wrapping<i32>
wrapping_int_impl #32463)
Converts self to big endian from the target’s endianness.
On big endian this is a no-op. On little endian the bytes are swapped.
Basic usage:
#![feature(wrapping_int_impl)]
use std::num::Wrapping;
let n = Wrapping(0x1Ai32);
if cfg!(target_endian = "big") {
assert_eq!(n.to_be(), n)
} else {
assert_eq!(n.to_be(), n.swap_bytes())
}pub const fn to_le(self) -> Wrapping<i32>
wrapping_int_impl #32463)
Converts self to little endian from the target’s endianness.
On little endian this is a no-op. On big endian the bytes are swapped.
Basic usage:
#![feature(wrapping_int_impl)]
use std::num::Wrapping;
let n = Wrapping(0x1Ai32);
if cfg!(target_endian = "little") {
assert_eq!(n.to_le(), n)
} else {
assert_eq!(n.to_le(), n.swap_bytes())
}pub fn pow(self, exp: u32) -> Wrapping<i32>
wrapping_int_impl #32463)
Raises self to the power of exp, using exponentiation by squaring.
Basic usage:
#![feature(wrapping_int_impl)] use std::num::Wrapping; assert_eq!(Wrapping(3i32).pow(4), Wrapping(81));
Results that are too large are wrapped:
#![feature(wrapping_int_impl)] use std::num::Wrapping; assert_eq!(Wrapping(3i8).pow(5), Wrapping(-13)); assert_eq!(Wrapping(3i8).pow(6), Wrapping(-39));
impl Wrapping<i64>
pub const MIN: Wrapping<i64>
wrapping_int_impl #32463)
Returns the smallest value that can be represented by this integer type.
Basic usage:
#![feature(wrapping_int_impl)] use std::num::Wrapping; assert_eq!(<Wrapping<i64>>::MIN, Wrapping(i64::MIN));
pub const MAX: Wrapping<i64>
wrapping_int_impl #32463)
Returns the largest value that can be represented by this integer type.
Basic usage:
#![feature(wrapping_int_impl)] use std::num::Wrapping; assert_eq!(<Wrapping<i64>>::MAX, Wrapping(i64::MAX));
pub const BITS: u32 = i64::BITS
wrapping_int_impl #32463)
Returns the size of this integer type in bits.
Basic usage:
#![feature(wrapping_int_impl)] use std::num::Wrapping; assert_eq!(<Wrapping<i64>>::BITS, i64::BITS);
pub const fn count_ones(self) -> u32
wrapping_int_impl #32463)
Returns the number of ones in the binary representation of self.
Basic usage:
#![feature(wrapping_int_impl)] use std::num::Wrapping; let n = Wrapping(0b01001100i64); assert_eq!(n.count_ones(), 3);
pub const fn count_zeros(self) -> u32
wrapping_int_impl #32463)
Returns the number of zeros in the binary representation of self.
Basic usage:
#![feature(wrapping_int_impl)] use std::num::Wrapping; assert_eq!(Wrapping(!0i64).count_zeros(), 0);
pub const fn trailing_zeros(self) -> u32
wrapping_int_impl #32463)
Returns the number of trailing zeros in the binary representation of self.
Basic usage:
#![feature(wrapping_int_impl)] use std::num::Wrapping; let n = Wrapping(0b0101000i64); assert_eq!(n.trailing_zeros(), 3);
pub const fn rotate_left(self, n: u32) -> Wrapping<i64>
wrapping_int_impl #32463)
Shifts the bits to the left by a specified amount, n, wrapping the truncated bits to the end of the resulting integer.
Please note this isn’t the same operation as the << shifting operator!
Basic usage:
#![feature(wrapping_int_impl)] use std::num::Wrapping; let n: Wrapping<i64> = Wrapping(0x0123456789ABCDEF); let m: Wrapping<i64> = Wrapping(-0x76543210FEDCBA99); assert_eq!(n.rotate_left(32), m);
pub const fn rotate_right(self, n: u32) -> Wrapping<i64>
wrapping_int_impl #32463)
Shifts the bits to the right by a specified amount, n, wrapping the truncated bits to the beginning of the resulting integer.
Please note this isn’t the same operation as the >> shifting operator!
Basic usage:
#![feature(wrapping_int_impl)] use std::num::Wrapping; let n: Wrapping<i64> = Wrapping(0x0123456789ABCDEF); let m: Wrapping<i64> = Wrapping(-0xFEDCBA987654322); assert_eq!(n.rotate_right(4), m);
pub const fn swap_bytes(self) -> Wrapping<i64>
wrapping_int_impl #32463)
Reverses the byte order of the integer.
Basic usage:
#![feature(wrapping_int_impl)] use std::num::Wrapping; let n: Wrapping<i16> = Wrapping(0b0000000_01010101); assert_eq!(n, Wrapping(85)); let m = n.swap_bytes(); assert_eq!(m, Wrapping(0b01010101_00000000)); assert_eq!(m, Wrapping(21760));
pub const fn reverse_bits(self) -> Wrapping<i64>
Reverses the bit pattern of the integer.
Please note that this example is shared among integer types, which is why i16 is used.
Basic usage:
use std::num::Wrapping; let n = Wrapping(0b0000000_01010101i16); assert_eq!(n, Wrapping(85)); let m = n.reverse_bits(); assert_eq!(m.0 as u16, 0b10101010_00000000); assert_eq!(m, Wrapping(-22016));
pub const fn from_be(x: Wrapping<i64>) -> Wrapping<i64>
wrapping_int_impl #32463)
Converts an integer from big endian to the target’s endianness.
On big endian this is a no-op. On little endian the bytes are swapped.
Basic usage:
#![feature(wrapping_int_impl)]
use std::num::Wrapping;
let n = Wrapping(0x1Ai64);
if cfg!(target_endian = "big") {
assert_eq!(<Wrapping<i64>>::from_be(n), n)
} else {
assert_eq!(<Wrapping<i64>>::from_be(n), n.swap_bytes())
}pub const fn from_le(x: Wrapping<i64>) -> Wrapping<i64>
wrapping_int_impl #32463)
Converts an integer from little endian to the target’s endianness.
On little endian this is a no-op. On big endian the bytes are swapped.
Basic usage:
#![feature(wrapping_int_impl)]
use std::num::Wrapping;
let n = Wrapping(0x1Ai64);
if cfg!(target_endian = "little") {
assert_eq!(<Wrapping<i64>>::from_le(n), n)
} else {
assert_eq!(<Wrapping<i64>>::from_le(n), n.swap_bytes())
}pub const fn to_be(self) -> Wrapping<i64>
wrapping_int_impl #32463)
Converts self to big endian from the target’s endianness.
On big endian this is a no-op. On little endian the bytes are swapped.
Basic usage:
#![feature(wrapping_int_impl)]
use std::num::Wrapping;
let n = Wrapping(0x1Ai64);
if cfg!(target_endian = "big") {
assert_eq!(n.to_be(), n)
} else {
assert_eq!(n.to_be(), n.swap_bytes())
}pub const fn to_le(self) -> Wrapping<i64>
wrapping_int_impl #32463)
Converts self to little endian from the target’s endianness.
On little endian this is a no-op. On big endian the bytes are swapped.
Basic usage:
#![feature(wrapping_int_impl)]
use std::num::Wrapping;
let n = Wrapping(0x1Ai64);
if cfg!(target_endian = "little") {
assert_eq!(n.to_le(), n)
} else {
assert_eq!(n.to_le(), n.swap_bytes())
}pub fn pow(self, exp: u32) -> Wrapping<i64>
wrapping_int_impl #32463)
Raises self to the power of exp, using exponentiation by squaring.
Basic usage:
#![feature(wrapping_int_impl)] use std::num::Wrapping; assert_eq!(Wrapping(3i64).pow(4), Wrapping(81));
Results that are too large are wrapped:
#![feature(wrapping_int_impl)] use std::num::Wrapping; assert_eq!(Wrapping(3i8).pow(5), Wrapping(-13)); assert_eq!(Wrapping(3i8).pow(6), Wrapping(-39));
impl Wrapping<i128>
pub const MIN: Wrapping<i128>
wrapping_int_impl #32463)
Returns the smallest value that can be represented by this integer type.
Basic usage:
#![feature(wrapping_int_impl)] use std::num::Wrapping; assert_eq!(<Wrapping<i128>>::MIN, Wrapping(i128::MIN));
pub const MAX: Wrapping<i128>
wrapping_int_impl #32463)
Returns the largest value that can be represented by this integer type.
Basic usage:
#![feature(wrapping_int_impl)] use std::num::Wrapping; assert_eq!(<Wrapping<i128>>::MAX, Wrapping(i128::MAX));
pub const BITS: u32 = i128::BITS
wrapping_int_impl #32463)
Returns the size of this integer type in bits.
Basic usage:
#![feature(wrapping_int_impl)] use std::num::Wrapping; assert_eq!(<Wrapping<i128>>::BITS, i128::BITS);
pub const fn count_ones(self) -> u32
wrapping_int_impl #32463)
Returns the number of ones in the binary representation of self.
Basic usage:
#![feature(wrapping_int_impl)] use std::num::Wrapping; let n = Wrapping(0b01001100i128); assert_eq!(n.count_ones(), 3);
pub const fn count_zeros(self) -> u32
wrapping_int_impl #32463)
Returns the number of zeros in the binary representation of self.
Basic usage:
#![feature(wrapping_int_impl)] use std::num::Wrapping; assert_eq!(Wrapping(!0i128).count_zeros(), 0);
pub const fn trailing_zeros(self) -> u32
wrapping_int_impl #32463)
Returns the number of trailing zeros in the binary representation of self.
Basic usage:
#![feature(wrapping_int_impl)] use std::num::Wrapping; let n = Wrapping(0b0101000i128); assert_eq!(n.trailing_zeros(), 3);
pub const fn rotate_left(self, n: u32) -> Wrapping<i128>
wrapping_int_impl #32463)
Shifts the bits to the left by a specified amount, n, wrapping the truncated bits to the end of the resulting integer.
Please note this isn’t the same operation as the << shifting operator!
Basic usage:
#![feature(wrapping_int_impl)] use std::num::Wrapping; let n: Wrapping<i64> = Wrapping(0x0123456789ABCDEF); let m: Wrapping<i64> = Wrapping(-0x76543210FEDCBA99); assert_eq!(n.rotate_left(32), m);
pub const fn rotate_right(self, n: u32) -> Wrapping<i128>
wrapping_int_impl #32463)
Shifts the bits to the right by a specified amount, n, wrapping the truncated bits to the beginning of the resulting integer.
Please note this isn’t the same operation as the >> shifting operator!
Basic usage:
#![feature(wrapping_int_impl)] use std::num::Wrapping; let n: Wrapping<i64> = Wrapping(0x0123456789ABCDEF); let m: Wrapping<i64> = Wrapping(-0xFEDCBA987654322); assert_eq!(n.rotate_right(4), m);
pub const fn swap_bytes(self) -> Wrapping<i128>
wrapping_int_impl #32463)
Reverses the byte order of the integer.
Basic usage:
#![feature(wrapping_int_impl)] use std::num::Wrapping; let n: Wrapping<i16> = Wrapping(0b0000000_01010101); assert_eq!(n, Wrapping(85)); let m = n.swap_bytes(); assert_eq!(m, Wrapping(0b01010101_00000000)); assert_eq!(m, Wrapping(21760));
pub const fn reverse_bits(self) -> Wrapping<i128>
Reverses the bit pattern of the integer.
Please note that this example is shared among integer types, which is why i16 is used.
Basic usage:
use std::num::Wrapping; let n = Wrapping(0b0000000_01010101i16); assert_eq!(n, Wrapping(85)); let m = n.reverse_bits(); assert_eq!(m.0 as u16, 0b10101010_00000000); assert_eq!(m, Wrapping(-22016));
pub const fn from_be(x: Wrapping<i128>) -> Wrapping<i128>
wrapping_int_impl #32463)
Converts an integer from big endian to the target’s endianness.
On big endian this is a no-op. On little endian the bytes are swapped.
Basic usage:
#![feature(wrapping_int_impl)]
use std::num::Wrapping;
let n = Wrapping(0x1Ai128);
if cfg!(target_endian = "big") {
assert_eq!(<Wrapping<i128>>::from_be(n), n)
} else {
assert_eq!(<Wrapping<i128>>::from_be(n), n.swap_bytes())
}pub const fn from_le(x: Wrapping<i128>) -> Wrapping<i128>
wrapping_int_impl #32463)
Converts an integer from little endian to the target’s endianness.
On little endian this is a no-op. On big endian the bytes are swapped.
Basic usage:
#![feature(wrapping_int_impl)]
use std::num::Wrapping;
let n = Wrapping(0x1Ai128);
if cfg!(target_endian = "little") {
assert_eq!(<Wrapping<i128>>::from_le(n), n)
} else {
assert_eq!(<Wrapping<i128>>::from_le(n), n.swap_bytes())
}pub const fn to_be(self) -> Wrapping<i128>
wrapping_int_impl #32463)
Converts self to big endian from the target’s endianness.
On big endian this is a no-op. On little endian the bytes are swapped.
Basic usage:
#![feature(wrapping_int_impl)]
use std::num::Wrapping;
let n = Wrapping(0x1Ai128);
if cfg!(target_endian = "big") {
assert_eq!(n.to_be(), n)
} else {
assert_eq!(n.to_be(), n.swap_bytes())
}pub const fn to_le(self) -> Wrapping<i128>
wrapping_int_impl #32463)
Converts self to little endian from the target’s endianness.
On little endian this is a no-op. On big endian the bytes are swapped.
Basic usage:
#![feature(wrapping_int_impl)]
use std::num::Wrapping;
let n = Wrapping(0x1Ai128);
if cfg!(target_endian = "little") {
assert_eq!(n.to_le(), n)
} else {
assert_eq!(n.to_le(), n.swap_bytes())
}pub fn pow(self, exp: u32) -> Wrapping<i128>
wrapping_int_impl #32463)
Raises self to the power of exp, using exponentiation by squaring.
Basic usage:
#![feature(wrapping_int_impl)] use std::num::Wrapping; assert_eq!(Wrapping(3i128).pow(4), Wrapping(81));
Results that are too large are wrapped:
#![feature(wrapping_int_impl)] use std::num::Wrapping; assert_eq!(Wrapping(3i8).pow(5), Wrapping(-13)); assert_eq!(Wrapping(3i8).pow(6), Wrapping(-39));
impl Wrapping<isize>
pub const fn leading_zeros(self) -> u32
wrapping_int_impl #32463)
Returns the number of leading zeros in the binary representation of self.
Basic usage:
#![feature(wrapping_int_impl)] use std::num::Wrapping; let n = Wrapping(isize::MAX) >> 2; assert_eq!(n.leading_zeros(), 3);
pub fn abs(self) -> Wrapping<isize>
wrapping_int_impl #32463)
Computes the absolute value of self, wrapping around at the boundary of the type.
The only case where such wrapping can occur is when one takes the absolute value of the negative minimal value for the type this is a positive value that is too large to represent in the type. In such a case, this function returns MIN itself.
Basic usage:
#![feature(wrapping_int_impl)] use std::num::Wrapping; assert_eq!(Wrapping(100isize).abs(), Wrapping(100)); assert_eq!(Wrapping(-100isize).abs(), Wrapping(100)); assert_eq!(Wrapping(isize::MIN).abs(), Wrapping(isize::MIN)); assert_eq!(Wrapping(-128i8).abs().0 as u8, 128u8);
pub fn signum(self) -> Wrapping<isize>
wrapping_int_impl #32463)
Returns a number representing sign of self.
0 if the number is zero1 if the number is positive-1 if the number is negativeBasic usage:
#![feature(wrapping_int_impl)] use std::num::Wrapping; assert_eq!(Wrapping(10isize).signum(), Wrapping(1)); assert_eq!(Wrapping(0isize).signum(), Wrapping(0)); assert_eq!(Wrapping(-10isize).signum(), Wrapping(-1));
pub const fn is_positive(self) -> bool
wrapping_int_impl #32463)
Returns true if self is positive and false if the number is zero or negative.
Basic usage:
#![feature(wrapping_int_impl)] use std::num::Wrapping; assert!(Wrapping(10isize).is_positive()); assert!(!Wrapping(-10isize).is_positive());
pub const fn is_negative(self) -> bool
wrapping_int_impl #32463)
Returns true if self is negative and false if the number is zero or positive.
Basic usage:
#![feature(wrapping_int_impl)] use std::num::Wrapping; assert!(Wrapping(-10isize).is_negative()); assert!(!Wrapping(10isize).is_negative());
impl Wrapping<i8>
pub const fn leading_zeros(self) -> u32
wrapping_int_impl #32463)
Returns the number of leading zeros in the binary representation of self.
Basic usage:
#![feature(wrapping_int_impl)] use std::num::Wrapping; let n = Wrapping(i8::MAX) >> 2; assert_eq!(n.leading_zeros(), 3);
pub fn abs(self) -> Wrapping<i8>
wrapping_int_impl #32463)
Computes the absolute value of self, wrapping around at the boundary of the type.
The only case where such wrapping can occur is when one takes the absolute value of the negative minimal value for the type this is a positive value that is too large to represent in the type. In such a case, this function returns MIN itself.
Basic usage:
#![feature(wrapping_int_impl)] use std::num::Wrapping; assert_eq!(Wrapping(100i8).abs(), Wrapping(100)); assert_eq!(Wrapping(-100i8).abs(), Wrapping(100)); assert_eq!(Wrapping(i8::MIN).abs(), Wrapping(i8::MIN)); assert_eq!(Wrapping(-128i8).abs().0 as u8, 128u8);
pub fn signum(self) -> Wrapping<i8>
wrapping_int_impl #32463)
Returns a number representing sign of self.
0 if the number is zero1 if the number is positive-1 if the number is negativeBasic usage:
#![feature(wrapping_int_impl)] use std::num::Wrapping; assert_eq!(Wrapping(10i8).signum(), Wrapping(1)); assert_eq!(Wrapping(0i8).signum(), Wrapping(0)); assert_eq!(Wrapping(-10i8).signum(), Wrapping(-1));
pub const fn is_positive(self) -> bool
wrapping_int_impl #32463)
Returns true if self is positive and false if the number is zero or negative.
Basic usage:
#![feature(wrapping_int_impl)] use std::num::Wrapping; assert!(Wrapping(10i8).is_positive()); assert!(!Wrapping(-10i8).is_positive());
pub const fn is_negative(self) -> bool
wrapping_int_impl #32463)
Returns true if self is negative and false if the number is zero or positive.
Basic usage:
#![feature(wrapping_int_impl)] use std::num::Wrapping; assert!(Wrapping(-10i8).is_negative()); assert!(!Wrapping(10i8).is_negative());
impl Wrapping<i16>
pub const fn leading_zeros(self) -> u32
wrapping_int_impl #32463)
Returns the number of leading zeros in the binary representation of self.
Basic usage:
#![feature(wrapping_int_impl)] use std::num::Wrapping; let n = Wrapping(i16::MAX) >> 2; assert_eq!(n.leading_zeros(), 3);
pub fn abs(self) -> Wrapping<i16>
wrapping_int_impl #32463)
Computes the absolute value of self, wrapping around at the boundary of the type.
The only case where such wrapping can occur is when one takes the absolute value of the negative minimal value for the type this is a positive value that is too large to represent in the type. In such a case, this function returns MIN itself.
Basic usage:
#![feature(wrapping_int_impl)] use std::num::Wrapping; assert_eq!(Wrapping(100i16).abs(), Wrapping(100)); assert_eq!(Wrapping(-100i16).abs(), Wrapping(100)); assert_eq!(Wrapping(i16::MIN).abs(), Wrapping(i16::MIN)); assert_eq!(Wrapping(-128i8).abs().0 as u8, 128u8);
pub fn signum(self) -> Wrapping<i16>
wrapping_int_impl #32463)
Returns a number representing sign of self.
0 if the number is zero1 if the number is positive-1 if the number is negativeBasic usage:
#![feature(wrapping_int_impl)] use std::num::Wrapping; assert_eq!(Wrapping(10i16).signum(), Wrapping(1)); assert_eq!(Wrapping(0i16).signum(), Wrapping(0)); assert_eq!(Wrapping(-10i16).signum(), Wrapping(-1));
pub const fn is_positive(self) -> bool
wrapping_int_impl #32463)
Returns true if self is positive and false if the number is zero or negative.
Basic usage:
#![feature(wrapping_int_impl)] use std::num::Wrapping; assert!(Wrapping(10i16).is_positive()); assert!(!Wrapping(-10i16).is_positive());
pub const fn is_negative(self) -> bool
wrapping_int_impl #32463)
Returns true if self is negative and false if the number is zero or positive.
Basic usage:
#![feature(wrapping_int_impl)] use std::num::Wrapping; assert!(Wrapping(-10i16).is_negative()); assert!(!Wrapping(10i16).is_negative());
impl Wrapping<i32>
pub const fn leading_zeros(self) -> u32
wrapping_int_impl #32463)
Returns the number of leading zeros in the binary representation of self.
Basic usage:
#![feature(wrapping_int_impl)] use std::num::Wrapping; let n = Wrapping(i32::MAX) >> 2; assert_eq!(n.leading_zeros(), 3);
pub fn abs(self) -> Wrapping<i32>
wrapping_int_impl #32463)
Computes the absolute value of self, wrapping around at the boundary of the type.
The only case where such wrapping can occur is when one takes the absolute value of the negative minimal value for the type this is a positive value that is too large to represent in the type. In such a case, this function returns MIN itself.
Basic usage:
#![feature(wrapping_int_impl)] use std::num::Wrapping; assert_eq!(Wrapping(100i32).abs(), Wrapping(100)); assert_eq!(Wrapping(-100i32).abs(), Wrapping(100)); assert_eq!(Wrapping(i32::MIN).abs(), Wrapping(i32::MIN)); assert_eq!(Wrapping(-128i8).abs().0 as u8, 128u8);
pub fn signum(self) -> Wrapping<i32>
wrapping_int_impl #32463)
Returns a number representing sign of self.
0 if the number is zero1 if the number is positive-1 if the number is negativeBasic usage:
#![feature(wrapping_int_impl)] use std::num::Wrapping; assert_eq!(Wrapping(10i32).signum(), Wrapping(1)); assert_eq!(Wrapping(0i32).signum(), Wrapping(0)); assert_eq!(Wrapping(-10i32).signum(), Wrapping(-1));
pub const fn is_positive(self) -> bool
wrapping_int_impl #32463)
Returns true if self is positive and false if the number is zero or negative.
Basic usage:
#![feature(wrapping_int_impl)] use std::num::Wrapping; assert!(Wrapping(10i32).is_positive()); assert!(!Wrapping(-10i32).is_positive());
pub const fn is_negative(self) -> bool
wrapping_int_impl #32463)
Returns true if self is negative and false if the number is zero or positive.
Basic usage:
#![feature(wrapping_int_impl)] use std::num::Wrapping; assert!(Wrapping(-10i32).is_negative()); assert!(!Wrapping(10i32).is_negative());
impl Wrapping<i64>
pub const fn leading_zeros(self) -> u32
wrapping_int_impl #32463)
Returns the number of leading zeros in the binary representation of self.
Basic usage:
#![feature(wrapping_int_impl)] use std::num::Wrapping; let n = Wrapping(i64::MAX) >> 2; assert_eq!(n.leading_zeros(), 3);
pub fn abs(self) -> Wrapping<i64>
wrapping_int_impl #32463)
Computes the absolute value of self, wrapping around at the boundary of the type.
The only case where such wrapping can occur is when one takes the absolute value of the negative minimal value for the type this is a positive value that is too large to represent in the type. In such a case, this function returns MIN itself.
Basic usage:
#![feature(wrapping_int_impl)] use std::num::Wrapping; assert_eq!(Wrapping(100i64).abs(), Wrapping(100)); assert_eq!(Wrapping(-100i64).abs(), Wrapping(100)); assert_eq!(Wrapping(i64::MIN).abs(), Wrapping(i64::MIN)); assert_eq!(Wrapping(-128i8).abs().0 as u8, 128u8);
pub fn signum(self) -> Wrapping<i64>
wrapping_int_impl #32463)
Returns a number representing sign of self.
0 if the number is zero1 if the number is positive-1 if the number is negativeBasic usage:
#![feature(wrapping_int_impl)] use std::num::Wrapping; assert_eq!(Wrapping(10i64).signum(), Wrapping(1)); assert_eq!(Wrapping(0i64).signum(), Wrapping(0)); assert_eq!(Wrapping(-10i64).signum(), Wrapping(-1));
pub const fn is_positive(self) -> bool
wrapping_int_impl #32463)
Returns true if self is positive and false if the number is zero or negative.
Basic usage:
#![feature(wrapping_int_impl)] use std::num::Wrapping; assert!(Wrapping(10i64).is_positive()); assert!(!Wrapping(-10i64).is_positive());
pub const fn is_negative(self) -> bool
wrapping_int_impl #32463)
Returns true if self is negative and false if the number is zero or positive.
Basic usage:
#![feature(wrapping_int_impl)] use std::num::Wrapping; assert!(Wrapping(-10i64).is_negative()); assert!(!Wrapping(10i64).is_negative());
impl Wrapping<i128>
pub const fn leading_zeros(self) -> u32
wrapping_int_impl #32463)
Returns the number of leading zeros in the binary representation of self.
Basic usage:
#![feature(wrapping_int_impl)] use std::num::Wrapping; let n = Wrapping(i128::MAX) >> 2; assert_eq!(n.leading_zeros(), 3);
pub fn abs(self) -> Wrapping<i128>
wrapping_int_impl #32463)
Computes the absolute value of self, wrapping around at the boundary of the type.
The only case where such wrapping can occur is when one takes the absolute value of the negative minimal value for the type this is a positive value that is too large to represent in the type. In such a case, this function returns MIN itself.
Basic usage:
#![feature(wrapping_int_impl)] use std::num::Wrapping; assert_eq!(Wrapping(100i128).abs(), Wrapping(100)); assert_eq!(Wrapping(-100i128).abs(), Wrapping(100)); assert_eq!(Wrapping(i128::MIN).abs(), Wrapping(i128::MIN)); assert_eq!(Wrapping(-128i8).abs().0 as u8, 128u8);
pub fn signum(self) -> Wrapping<i128>
wrapping_int_impl #32463)
Returns a number representing sign of self.
0 if the number is zero1 if the number is positive-1 if the number is negativeBasic usage:
#![feature(wrapping_int_impl)] use std::num::Wrapping; assert_eq!(Wrapping(10i128).signum(), Wrapping(1)); assert_eq!(Wrapping(0i128).signum(), Wrapping(0)); assert_eq!(Wrapping(-10i128).signum(), Wrapping(-1));
pub const fn is_positive(self) -> bool
wrapping_int_impl #32463)
Returns true if self is positive and false if the number is zero or negative.
Basic usage:
#![feature(wrapping_int_impl)] use std::num::Wrapping; assert!(Wrapping(10i128).is_positive()); assert!(!Wrapping(-10i128).is_positive());
pub const fn is_negative(self) -> bool
wrapping_int_impl #32463)
Returns true if self is negative and false if the number is zero or positive.
Basic usage:
#![feature(wrapping_int_impl)] use std::num::Wrapping; assert!(Wrapping(-10i128).is_negative()); assert!(!Wrapping(10i128).is_negative());
impl Wrapping<usize>
pub const fn leading_zeros(self) -> u32
wrapping_int_impl #32463)
Returns the number of leading zeros in the binary representation of self.
Basic usage:
#![feature(wrapping_int_impl)] use std::num::Wrapping; let n = Wrapping(usize::MAX) >> 2; assert_eq!(n.leading_zeros(), 2);
pub fn is_power_of_two(self) -> bool
wrapping_int_impl #32463)
Returns true if and only if self == 2^k for some k.
Basic usage:
#![feature(wrapping_int_impl)] use std::num::Wrapping; assert!(Wrapping(16usize).is_power_of_two()); assert!(!Wrapping(10usize).is_power_of_two());
pub fn next_power_of_two(self) -> Wrapping<usize>
wrapping_next_power_of_two #32463)
Returns the smallest power of two greater than or equal to self.
When return value overflows (i.e., self > (1 << (N-1)) for type uN), overflows to 2^N = 0.
Basic usage:
#![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));
impl Wrapping<u8>
pub const fn leading_zeros(self) -> u32
wrapping_int_impl #32463)
Returns the number of leading zeros in the binary representation of self.
Basic usage:
#![feature(wrapping_int_impl)] use std::num::Wrapping; let n = Wrapping(u8::MAX) >> 2; assert_eq!(n.leading_zeros(), 2);
pub fn is_power_of_two(self) -> bool
wrapping_int_impl #32463)
Returns true if and only if self == 2^k for some k.
Basic usage:
#![feature(wrapping_int_impl)] use std::num::Wrapping; assert!(Wrapping(16u8).is_power_of_two()); assert!(!Wrapping(10u8).is_power_of_two());
pub fn next_power_of_two(self) -> Wrapping<u8>
wrapping_next_power_of_two #32463)
Returns the smallest power of two greater than or equal to self.
When return value overflows (i.e., self > (1 << (N-1)) for type uN), overflows to 2^N = 0.
Basic usage:
#![feature(wrapping_next_power_of_two)] use std::num::Wrapping; assert_eq!(Wrapping(2u8).next_power_of_two(), Wrapping(2)); assert_eq!(Wrapping(3u8).next_power_of_two(), Wrapping(4)); assert_eq!(Wrapping(200_u8).next_power_of_two(), Wrapping(0));
impl Wrapping<u16>
pub const fn leading_zeros(self) -> u32
wrapping_int_impl #32463)
Returns the number of leading zeros in the binary representation of self.
Basic usage:
#![feature(wrapping_int_impl)] use std::num::Wrapping; let n = Wrapping(u16::MAX) >> 2; assert_eq!(n.leading_zeros(), 2);
pub fn is_power_of_two(self) -> bool
wrapping_int_impl #32463)
Returns true if and only if self == 2^k for some k.
Basic usage:
#![feature(wrapping_int_impl)] use std::num::Wrapping; assert!(Wrapping(16u16).is_power_of_two()); assert!(!Wrapping(10u16).is_power_of_two());
pub fn next_power_of_two(self) -> Wrapping<u16>
wrapping_next_power_of_two #32463)
Returns the smallest power of two greater than or equal to self.
When return value overflows (i.e., self > (1 << (N-1)) for type uN), overflows to 2^N = 0.
Basic usage:
#![feature(wrapping_next_power_of_two)] use std::num::Wrapping; assert_eq!(Wrapping(2u16).next_power_of_two(), Wrapping(2)); assert_eq!(Wrapping(3u16).next_power_of_two(), Wrapping(4)); assert_eq!(Wrapping(200_u8).next_power_of_two(), Wrapping(0));
impl Wrapping<u32>
pub const fn leading_zeros(self) -> u32
wrapping_int_impl #32463)
Returns the number of leading zeros in the binary representation of self.
Basic usage:
#![feature(wrapping_int_impl)] use std::num::Wrapping; let n = Wrapping(u32::MAX) >> 2; assert_eq!(n.leading_zeros(), 2);
pub fn is_power_of_two(self) -> bool
wrapping_int_impl #32463)
Returns true if and only if self == 2^k for some k.
Basic usage:
#![feature(wrapping_int_impl)] use std::num::Wrapping; assert!(Wrapping(16u32).is_power_of_two()); assert!(!Wrapping(10u32).is_power_of_two());
pub fn next_power_of_two(self) -> Wrapping<u32>
wrapping_next_power_of_two #32463)
Returns the smallest power of two greater than or equal to self.
When return value overflows (i.e., self > (1 << (N-1)) for type uN), overflows to 2^N = 0.
Basic usage:
#![feature(wrapping_next_power_of_two)] use std::num::Wrapping; assert_eq!(Wrapping(2u32).next_power_of_two(), Wrapping(2)); assert_eq!(Wrapping(3u32).next_power_of_two(), Wrapping(4)); assert_eq!(Wrapping(200_u8).next_power_of_two(), Wrapping(0));
impl Wrapping<u64>
pub const fn leading_zeros(self) -> u32
wrapping_int_impl #32463)
Returns the number of leading zeros in the binary representation of self.
Basic usage:
#![feature(wrapping_int_impl)] use std::num::Wrapping; let n = Wrapping(u64::MAX) >> 2; assert_eq!(n.leading_zeros(), 2);
pub fn is_power_of_two(self) -> bool
wrapping_int_impl #32463)
Returns true if and only if self == 2^k for some k.
Basic usage:
#![feature(wrapping_int_impl)] use std::num::Wrapping; assert!(Wrapping(16u64).is_power_of_two()); assert!(!Wrapping(10u64).is_power_of_two());
pub fn next_power_of_two(self) -> Wrapping<u64>
wrapping_next_power_of_two #32463)
Returns the smallest power of two greater than or equal to self.
When return value overflows (i.e., self > (1 << (N-1)) for type uN), overflows to 2^N = 0.
Basic usage:
#![feature(wrapping_next_power_of_two)] use std::num::Wrapping; assert_eq!(Wrapping(2u64).next_power_of_two(), Wrapping(2)); assert_eq!(Wrapping(3u64).next_power_of_two(), Wrapping(4)); assert_eq!(Wrapping(200_u8).next_power_of_two(), Wrapping(0));
impl Wrapping<u128>
pub const fn leading_zeros(self) -> u32
wrapping_int_impl #32463)
Returns the number of leading zeros in the binary representation of self.
Basic usage:
#![feature(wrapping_int_impl)] use std::num::Wrapping; let n = Wrapping(u128::MAX) >> 2; assert_eq!(n.leading_zeros(), 2);
pub fn is_power_of_two(self) -> bool
wrapping_int_impl #32463)
Returns true if and only if self == 2^k for some k.
Basic usage:
#![feature(wrapping_int_impl)] use std::num::Wrapping; assert!(Wrapping(16u128).is_power_of_two()); assert!(!Wrapping(10u128).is_power_of_two());
pub fn next_power_of_two(self) -> Wrapping<u128>
wrapping_next_power_of_two #32463)
Returns the smallest power of two greater than or equal to self.
When return value overflows (i.e., self > (1 << (N-1)) for type uN), overflows to 2^N = 0.
Basic usage:
#![feature(wrapping_next_power_of_two)] use std::num::Wrapping; assert_eq!(Wrapping(2u128).next_power_of_two(), Wrapping(2)); assert_eq!(Wrapping(3u128).next_power_of_two(), Wrapping(4)); assert_eq!(Wrapping(200_u8).next_power_of_two(), Wrapping(0));
impl Add<&Wrapping<i128>> for &Wrapping<i128>
type Output = <Wrapping<i128> as Add>::Output
+ operator.fn add(self, other: &Wrapping<i128>) -> <Wrapping<i128> as Add>::Output
+ operation. Read more
impl Add<&Wrapping<i128>> for Wrapping<i128>
type Output = <Wrapping<i128> as Add>::Output
+ operator.fn add(self, other: &Wrapping<i128>) -> <Wrapping<i128> as Add>::Output
+ operation. Read more
impl Add<&Wrapping<i16>> for &Wrapping<i16>
type Output = <Wrapping<i16> as Add>::Output
+ operator.fn add(self, other: &Wrapping<i16>) -> <Wrapping<i16> as Add>::Output
+ operation. Read more
impl Add<&Wrapping<i16>> for Wrapping<i16>
type Output = <Wrapping<i16> as Add>::Output
+ operator.fn add(self, other: &Wrapping<i16>) -> <Wrapping<i16> as Add>::Output
+ operation. Read more
impl Add<&Wrapping<i32>> for &Wrapping<i32>
type Output = <Wrapping<i32> as Add>::Output
+ operator.fn add(self, other: &Wrapping<i32>) -> <Wrapping<i32> as Add>::Output
+ operation. Read more
impl Add<&Wrapping<i32>> for Wrapping<i32>
type Output = <Wrapping<i32> as Add>::Output
+ operator.fn add(self, other: &Wrapping<i32>) -> <Wrapping<i32> as Add>::Output
+ operation. Read more
impl Add<&Wrapping<i64>> for &Wrapping<i64>
type Output = <Wrapping<i64> as Add>::Output
+ operator.fn add(self, other: &Wrapping<i64>) -> <Wrapping<i64> as Add>::Output
+ operation. Read more
impl Add<&Wrapping<i64>> for Wrapping<i64>
type Output = <Wrapping<i64> as Add>::Output
+ operator.fn add(self, other: &Wrapping<i64>) -> <Wrapping<i64> as Add>::Output
+ operation. Read more
impl Add<&Wrapping<i8>> for &Wrapping<i8>
type Output = <Wrapping<i8> as Add>::Output
+ operator.fn add(self, other: &Wrapping<i8>) -> <Wrapping<i8> as Add>::Output
+ operation. Read more
impl Add<&Wrapping<i8>> for Wrapping<i8>
type Output = <Wrapping<i8> as Add>::Output
+ operator.fn add(self, other: &Wrapping<i8>) -> <Wrapping<i8> as Add>::Output
+ operation. Read more
impl Add<&Wrapping<isize>> for &Wrapping<isize>
type Output = <Wrapping<isize> as Add>::Output
+ operator.fn add(self, other: &Wrapping<isize>) -> <Wrapping<isize> as Add>::Output
+ operation. Read more
impl Add<&Wrapping<isize>> for Wrapping<isize>
type Output = <Wrapping<isize> as Add>::Output
+ operator.fn add(self, other: &Wrapping<isize>) -> <Wrapping<isize> as Add>::Output
+ operation. Read more
impl Add<&Wrapping<u128>> for &Wrapping<u128>
type Output = <Wrapping<u128> as Add>::Output
+ operator.fn add(self, other: &Wrapping<u128>) -> <Wrapping<u128> as Add>::Output
+ operation. Read more
impl Add<&Wrapping<u128>> for Wrapping<u128>
type Output = <Wrapping<u128> as Add>::Output
+ operator.fn add(self, other: &Wrapping<u128>) -> <Wrapping<u128> as Add>::Output
+ operation. Read more
impl Add<&Wrapping<u16>> for &Wrapping<u16>
type Output = <Wrapping<u16> as Add>::Output
+ operator.fn add(self, other: &Wrapping<u16>) -> <Wrapping<u16> as Add>::Output
+ operation. Read more
impl Add<&Wrapping<u16>> for Wrapping<u16>
type Output = <Wrapping<u16> as Add>::Output
+ operator.fn add(self, other: &Wrapping<u16>) -> <Wrapping<u16> as Add>::Output
+ operation. Read more
impl Add<&Wrapping<u32>> for &Wrapping<u32>
type Output = <Wrapping<u32> as Add>::Output
+ operator.fn add(self, other: &Wrapping<u32>) -> <Wrapping<u32> as Add>::Output
+ operation. Read more
impl Add<&Wrapping<u32>> for Wrapping<u32>
type Output = <Wrapping<u32> as Add>::Output
+ operator.fn add(self, other: &Wrapping<u32>) -> <Wrapping<u32> as Add>::Output
+ operation. Read more
impl Add<&Wrapping<u64>> for &Wrapping<u64>
type Output = <Wrapping<u64> as Add>::Output
+ operator.fn add(self, other: &Wrapping<u64>) -> <Wrapping<u64> as Add>::Output
+ operation. Read more
impl Add<&Wrapping<u64>> for Wrapping<u64>
type Output = <Wrapping<u64> as Add>::Output
+ operator.fn add(self, other: &Wrapping<u64>) -> <Wrapping<u64> as Add>::Output
+ operation. Read more
impl Add<&Wrapping<u8>> for &Wrapping<u8>
type Output = <Wrapping<u8> as Add>::Output
+ operator.fn add(self, other: &Wrapping<u8>) -> <Wrapping<u8> as Add>::Output
+ operation. Read more
impl Add<&Wrapping<u8>> for Wrapping<u8>
type Output = <Wrapping<u8> as Add>::Output
+ operator.fn add(self, other: &Wrapping<u8>) -> <Wrapping<u8> as Add>::Output
+ operation. Read more
impl Add<&Wrapping<usize>> for &Wrapping<usize>
type Output = <Wrapping<usize> as Add>::Output
+ operator.fn add(self, other: &Wrapping<usize>) -> <Wrapping<usize> as Add>::Output
+ operation. Read more
impl Add<&Wrapping<usize>> for Wrapping<usize>
type Output = <Wrapping<usize> as Add>::Output
+ operator.fn add(self, other: &Wrapping<usize>) -> <Wrapping<usize> as Add>::Output
+ operation. Read more
impl Add<Wrapping<i128>> for &Wrapping<i128>
type Output = <Wrapping<i128> as Add>::Output
+ operator.fn add(self, other: Wrapping<i128>) -> <Wrapping<i128> as Add>::Output
+ operation. Read more
impl Add<Wrapping<i16>> for &Wrapping<i16>
type Output = <Wrapping<i16> as Add>::Output
+ operator.fn add(self, other: Wrapping<i16>) -> <Wrapping<i16> as Add>::Output
+ operation. Read more
impl Add<Wrapping<i32>> for &Wrapping<i32>
type Output = <Wrapping<i32> as Add>::Output
+ operator.fn add(self, other: Wrapping<i32>) -> <Wrapping<i32> as Add>::Output
+ operation. Read more
impl Add<Wrapping<i64>> for &Wrapping<i64>
type Output = <Wrapping<i64> as Add>::Output
+ operator.fn add(self, other: Wrapping<i64>) -> <Wrapping<i64> as Add>::Output
+ operation. Read more
impl Add<Wrapping<i8>> for &Wrapping<i8>
type Output = <Wrapping<i8> as Add>::Output
+ operator.fn add(self, other: Wrapping<i8>) -> <Wrapping<i8> as Add>::Output
+ operation. Read more
impl Add<Wrapping<isize>> for &Wrapping<isize>
type Output = <Wrapping<isize> as Add>::Output
+ operator.fn add(self, other: Wrapping<isize>) -> <Wrapping<isize> as Add>::Output
+ operation. Read more
impl Add<Wrapping<u128>> for &Wrapping<u128>
type Output = <Wrapping<u128> as Add>::Output
+ operator.fn add(self, other: Wrapping<u128>) -> <Wrapping<u128> as Add>::Output
+ operation. Read more
impl Add<Wrapping<u16>> for &Wrapping<u16>
type Output = <Wrapping<u16> as Add>::Output
+ operator.fn add(self, other: Wrapping<u16>) -> <Wrapping<u16> as Add>::Output
+ operation. Read more
impl Add<Wrapping<u32>> for &Wrapping<u32>
type Output = <Wrapping<u32> as Add>::Output
+ operator.fn add(self, other: Wrapping<u32>) -> <Wrapping<u32> as Add>::Output
+ operation. Read more
impl Add<Wrapping<u64>> for &Wrapping<u64>
type Output = <Wrapping<u64> as Add>::Output
+ operator.fn add(self, other: Wrapping<u64>) -> <Wrapping<u64> as Add>::Output
+ operation. Read more
impl Add<Wrapping<u8>> for &Wrapping<u8>
type Output = <Wrapping<u8> as Add>::Output
+ operator.fn add(self, other: Wrapping<u8>) -> <Wrapping<u8> as Add>::Output
+ operation. Read more
impl Add<Wrapping<usize>> for &Wrapping<usize>
type Output = <Wrapping<usize> as Add>::Output
+ operator.fn add(self, other: Wrapping<usize>) -> <Wrapping<usize> as Add>::Output
+ operation. Read more
impl Add for Wrapping<i128>
type Output = Wrapping<i128>
+ operator.fn add(self, other: Wrapping<i128>) -> Wrapping<i128>
+ operation. Read more
impl Add for Wrapping<i16>
type Output = Wrapping<i16>
+ operator.fn add(self, other: Wrapping<i16>) -> Wrapping<i16>
+ operation. Read more
impl Add for Wrapping<i32>
type Output = Wrapping<i32>
+ operator.fn add(self, other: Wrapping<i32>) -> Wrapping<i32>
+ operation. Read more
impl Add for Wrapping<i64>
type Output = Wrapping<i64>
+ operator.fn add(self, other: Wrapping<i64>) -> Wrapping<i64>
+ operation. Read more
impl Add for Wrapping<i8>
type Output = Wrapping<i8>
+ operator.fn add(self, other: Wrapping<i8>) -> Wrapping<i8>
+ operation. Read more
impl Add for Wrapping<isize>
type Output = Wrapping<isize>
+ operator.fn add(self, other: Wrapping<isize>) -> Wrapping<isize>
+ operation. Read more
impl Add for Wrapping<u128>
type Output = Wrapping<u128>
+ operator.fn add(self, other: Wrapping<u128>) -> Wrapping<u128>
+ operation. Read more
impl Add for Wrapping<u16>
type Output = Wrapping<u16>
+ operator.fn add(self, other: Wrapping<u16>) -> Wrapping<u16>
+ operation. Read more
impl Add for Wrapping<u32>
type Output = Wrapping<u32>
+ operator.fn add(self, other: Wrapping<u32>) -> Wrapping<u32>
+ operation. Read more
impl Add for Wrapping<u64>
type Output = Wrapping<u64>
+ operator.fn add(self, other: Wrapping<u64>) -> Wrapping<u64>
+ operation. Read more
impl Add for Wrapping<u8>
type Output = Wrapping<u8>
+ operator.fn add(self, other: Wrapping<u8>) -> Wrapping<u8>
+ operation. Read more
impl Add for Wrapping<usize>
type Output = Wrapping<usize>
+ operator.fn add(self, other: Wrapping<usize>) -> Wrapping<usize>
+ operation. Read more
impl AddAssign<&Wrapping<i128>> for Wrapping<i128>
impl AddAssign<&Wrapping<i16>> for Wrapping<i16>
impl AddAssign<&Wrapping<i32>> for Wrapping<i32>
impl AddAssign<&Wrapping<i64>> for Wrapping<i64>
impl AddAssign<&Wrapping<i8>> for Wrapping<i8>
impl AddAssign<&Wrapping<isize>> for Wrapping<isize>
impl AddAssign<&Wrapping<u128>> for Wrapping<u128>
impl AddAssign<&Wrapping<u16>> for Wrapping<u16>
impl AddAssign<&Wrapping<u32>> for Wrapping<u32>
impl AddAssign<&Wrapping<u64>> for Wrapping<u64>
impl AddAssign<&Wrapping<u8>> for Wrapping<u8>
impl AddAssign<&Wrapping<usize>> for Wrapping<usize>
impl AddAssign<&i128> for Wrapping<i128>
impl AddAssign<&i16> for Wrapping<i16>
impl AddAssign<&i32> for Wrapping<i32>
impl AddAssign<&i64> for Wrapping<i64>
impl AddAssign<&i8> for Wrapping<i8>
impl AddAssign<&isize> for Wrapping<isize>
impl AddAssign<&u128> for Wrapping<u128>
impl AddAssign<&u16> for Wrapping<u16>
impl AddAssign<&u32> for Wrapping<u32>
impl AddAssign<&u64> for Wrapping<u64>
impl AddAssign<&u8> for Wrapping<u8>
impl AddAssign<&usize> for Wrapping<usize>
impl AddAssign<i128> for Wrapping<i128>
impl AddAssign<i16> for Wrapping<i16>
impl AddAssign<i32> for Wrapping<i32>
impl AddAssign<i64> for Wrapping<i64>
impl AddAssign<i8> for Wrapping<i8>
impl AddAssign<isize> for Wrapping<isize>
impl AddAssign<u128> for Wrapping<u128>
impl AddAssign<u16> for Wrapping<u16>
impl AddAssign<u32> for Wrapping<u32>
impl AddAssign<u64> for Wrapping<u64>
impl AddAssign<u8> for Wrapping<u8>
impl AddAssign<usize> for Wrapping<usize>
impl AddAssign for Wrapping<i128>
impl AddAssign for Wrapping<i16>
impl AddAssign for Wrapping<i32>
impl AddAssign for Wrapping<i64>
impl AddAssign for Wrapping<i8>
impl AddAssign for Wrapping<isize>
impl AddAssign for Wrapping<u128>
impl AddAssign for Wrapping<u16>
impl AddAssign for Wrapping<u32>
impl AddAssign for Wrapping<u64>
impl AddAssign for Wrapping<u8>
impl AddAssign for Wrapping<usize>
impl<T> Binary for Wrapping<T>where
T: Binary,fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>
impl BitAnd<&Wrapping<i128>> for &Wrapping<i128>
type Output = <Wrapping<i128> as BitAnd>::Output
& operator.fn bitand(self, other: &Wrapping<i128>) -> <Wrapping<i128> as BitAnd>::Output
& operation. Read more
impl BitAnd<&Wrapping<i128>> for Wrapping<i128>
type Output = <Wrapping<i128> as BitAnd>::Output
& operator.fn bitand(self, other: &Wrapping<i128>) -> <Wrapping<i128> as BitAnd>::Output
& operation. Read more
impl BitAnd<&Wrapping<i16>> for &Wrapping<i16>
type Output = <Wrapping<i16> as BitAnd>::Output
& operator.fn bitand(self, other: &Wrapping<i16>) -> <Wrapping<i16> as BitAnd>::Output
& operation. Read more
impl BitAnd<&Wrapping<i16>> for Wrapping<i16>
type Output = <Wrapping<i16> as BitAnd>::Output
& operator.fn bitand(self, other: &Wrapping<i16>) -> <Wrapping<i16> as BitAnd>::Output
& operation. Read more
impl BitAnd<&Wrapping<i32>> for &Wrapping<i32>
type Output = <Wrapping<i32> as BitAnd>::Output
& operator.fn bitand(self, other: &Wrapping<i32>) -> <Wrapping<i32> as BitAnd>::Output
& operation. Read more
impl BitAnd<&Wrapping<i32>> for Wrapping<i32>
type Output = <Wrapping<i32> as BitAnd>::Output
& operator.fn bitand(self, other: &Wrapping<i32>) -> <Wrapping<i32> as BitAnd>::Output
& operation. Read more
impl BitAnd<&Wrapping<i64>> for &Wrapping<i64>
type Output = <Wrapping<i64> as BitAnd>::Output
& operator.fn bitand(self, other: &Wrapping<i64>) -> <Wrapping<i64> as BitAnd>::Output
& operation. Read more
impl BitAnd<&Wrapping<i64>> for Wrapping<i64>
type Output = <Wrapping<i64> as BitAnd>::Output
& operator.fn bitand(self, other: &Wrapping<i64>) -> <Wrapping<i64> as BitAnd>::Output
& operation. Read more
impl BitAnd<&Wrapping<i8>> for &Wrapping<i8>
type Output = <Wrapping<i8> as BitAnd>::Output
& operator.fn bitand(self, other: &Wrapping<i8>) -> <Wrapping<i8> as BitAnd>::Output
& operation. Read more
impl BitAnd<&Wrapping<i8>> for Wrapping<i8>
type Output = <Wrapping<i8> as BitAnd>::Output
& operator.fn bitand(self, other: &Wrapping<i8>) -> <Wrapping<i8> as BitAnd>::Output
& operation. Read more
impl BitAnd<&Wrapping<isize>> for &Wrapping<isize>
type Output = <Wrapping<isize> as BitAnd>::Output
& operator.fn bitand(self, other: &Wrapping<isize>) -> <Wrapping<isize> as BitAnd>::Output
& operation. Read more
impl BitAnd<&Wrapping<isize>> for Wrapping<isize>
type Output = <Wrapping<isize> as BitAnd>::Output
& operator.fn bitand(self, other: &Wrapping<isize>) -> <Wrapping<isize> as BitAnd>::Output
& operation. Read more
impl BitAnd<&Wrapping<u128>> for &Wrapping<u128>
type Output = <Wrapping<u128> as BitAnd>::Output
& operator.fn bitand(self, other: &Wrapping<u128>) -> <Wrapping<u128> as BitAnd>::Output
& operation. Read more
impl BitAnd<&Wrapping<u128>> for Wrapping<u128>
type Output = <Wrapping<u128> as BitAnd>::Output
& operator.fn bitand(self, other: &Wrapping<u128>) -> <Wrapping<u128> as BitAnd>::Output
& operation. Read more
impl BitAnd<&Wrapping<u16>> for &Wrapping<u16>
type Output = <Wrapping<u16> as BitAnd>::Output
& operator.fn bitand(self, other: &Wrapping<u16>) -> <Wrapping<u16> as BitAnd>::Output
& operation. Read more
impl BitAnd<&Wrapping<u16>> for Wrapping<u16>
type Output = <Wrapping<u16> as BitAnd>::Output
& operator.fn bitand(self, other: &Wrapping<u16>) -> <Wrapping<u16> as BitAnd>::Output
& operation. Read more
impl BitAnd<&Wrapping<u32>> for &Wrapping<u32>
type Output = <Wrapping<u32> as BitAnd>::Output
& operator.fn bitand(self, other: &Wrapping<u32>) -> <Wrapping<u32> as BitAnd>::Output
& operation. Read more
impl BitAnd<&Wrapping<u32>> for Wrapping<u32>
type Output = <Wrapping<u32> as BitAnd>::Output
& operator.fn bitand(self, other: &Wrapping<u32>) -> <Wrapping<u32> as BitAnd>::Output
& operation. Read more
impl BitAnd<&Wrapping<u64>> for &Wrapping<u64>
type Output = <Wrapping<u64> as BitAnd>::Output
& operator.fn bitand(self, other: &Wrapping<u64>) -> <Wrapping<u64> as BitAnd>::Output
& operation. Read more
impl BitAnd<&Wrapping<u64>> for Wrapping<u64>
type Output = <Wrapping<u64> as BitAnd>::Output
& operator.fn bitand(self, other: &Wrapping<u64>) -> <Wrapping<u64> as BitAnd>::Output
& operation. Read more
impl BitAnd<&Wrapping<u8>> for &Wrapping<u8>
type Output = <Wrapping<u8> as BitAnd>::Output
& operator.fn bitand(self, other: &Wrapping<u8>) -> <Wrapping<u8> as BitAnd>::Output
& operation. Read more
impl BitAnd<&Wrapping<u8>> for Wrapping<u8>
type Output = <Wrapping<u8> as BitAnd>::Output
& operator.fn bitand(self, other: &Wrapping<u8>) -> <Wrapping<u8> as BitAnd>::Output
& operation. Read more
impl BitAnd<&Wrapping<usize>> for &Wrapping<usize>
type Output = <Wrapping<usize> as BitAnd>::Output
& operator.fn bitand(self, other: &Wrapping<usize>) -> <Wrapping<usize> as BitAnd>::Output
& operation. Read more
impl BitAnd<&Wrapping<usize>> for Wrapping<usize>
type Output = <Wrapping<usize> as BitAnd>::Output
& operator.fn bitand(self, other: &Wrapping<usize>) -> <Wrapping<usize> as BitAnd>::Output
& operation. Read more
impl BitAnd<Wrapping<i128>> for &Wrapping<i128>
type Output = <Wrapping<i128> as BitAnd>::Output
& operator.fn bitand(self, other: Wrapping<i128>) -> <Wrapping<i128> as BitAnd>::Output
& operation. Read more
impl BitAnd<Wrapping<i16>> for &Wrapping<i16>
type Output = <Wrapping<i16> as BitAnd>::Output
& operator.fn bitand(self, other: Wrapping<i16>) -> <Wrapping<i16> as BitAnd>::Output
& operation. Read more
impl BitAnd<Wrapping<i32>> for &Wrapping<i32>
type Output = <Wrapping<i32> as BitAnd>::Output
& operator.fn bitand(self, other: Wrapping<i32>) -> <Wrapping<i32> as BitAnd>::Output
& operation. Read more
impl BitAnd<Wrapping<i64>> for &Wrapping<i64>
type Output = <Wrapping<i64> as BitAnd>::Output
& operator.fn bitand(self, other: Wrapping<i64>) -> <Wrapping<i64> as BitAnd>::Output
& operation. Read more
impl BitAnd<Wrapping<i8>> for &Wrapping<i8>
type Output = <Wrapping<i8> as BitAnd>::Output
& operator.fn bitand(self, other: Wrapping<i8>) -> <Wrapping<i8> as BitAnd>::Output
& operation. Read more
impl BitAnd<Wrapping<isize>> for &Wrapping<isize>
type Output = <Wrapping<isize> as BitAnd>::Output
& operator.fn bitand(self, other: Wrapping<isize>) -> <Wrapping<isize> as BitAnd>::Output
& operation. Read more
impl BitAnd<Wrapping<u128>> for &Wrapping<u128>
type Output = <Wrapping<u128> as BitAnd>::Output
& operator.fn bitand(self, other: Wrapping<u128>) -> <Wrapping<u128> as BitAnd>::Output
& operation. Read more
impl BitAnd<Wrapping<u16>> for &Wrapping<u16>
type Output = <Wrapping<u16> as BitAnd>::Output
& operator.fn bitand(self, other: Wrapping<u16>) -> <Wrapping<u16> as BitAnd>::Output
& operation. Read more
impl BitAnd<Wrapping<u32>> for &Wrapping<u32>
type Output = <Wrapping<u32> as BitAnd>::Output
& operator.fn bitand(self, other: Wrapping<u32>) -> <Wrapping<u32> as BitAnd>::Output
& operation. Read more
impl BitAnd<Wrapping<u64>> for &Wrapping<u64>
type Output = <Wrapping<u64> as BitAnd>::Output
& operator.fn bitand(self, other: Wrapping<u64>) -> <Wrapping<u64> as BitAnd>::Output
& operation. Read more
impl BitAnd<Wrapping<u8>> for &Wrapping<u8>
type Output = <Wrapping<u8> as BitAnd>::Output
& operator.fn bitand(self, other: Wrapping<u8>) -> <Wrapping<u8> as BitAnd>::Output
& operation. Read more
impl BitAnd<Wrapping<usize>> for &Wrapping<usize>
type Output = <Wrapping<usize> as BitAnd>::Output
& operator.fn bitand(self, other: Wrapping<usize>) -> <Wrapping<usize> as BitAnd>::Output
& operation. Read more
impl BitAnd for Wrapping<i128>
type Output = Wrapping<i128>
& operator.fn bitand(self, other: Wrapping<i128>) -> Wrapping<i128>
& operation. Read more
impl BitAnd for Wrapping<i16>
type Output = Wrapping<i16>
& operator.fn bitand(self, other: Wrapping<i16>) -> Wrapping<i16>
& operation. Read more
impl BitAnd for Wrapping<i32>
type Output = Wrapping<i32>
& operator.fn bitand(self, other: Wrapping<i32>) -> Wrapping<i32>
& operation. Read more
impl BitAnd for Wrapping<i64>
type Output = Wrapping<i64>
& operator.fn bitand(self, other: Wrapping<i64>) -> Wrapping<i64>
& operation. Read more
impl BitAnd for Wrapping<i8>
type Output = Wrapping<i8>
& operator.fn bitand(self, other: Wrapping<i8>) -> Wrapping<i8>
& operation. Read more
impl BitAnd for Wrapping<isize>
type Output = Wrapping<isize>
& operator.fn bitand(self, other: Wrapping<isize>) -> Wrapping<isize>
& operation. Read more
impl BitAnd for Wrapping<u128>
type Output = Wrapping<u128>
& operator.fn bitand(self, other: Wrapping<u128>) -> Wrapping<u128>
& operation. Read more
impl BitAnd for Wrapping<u16>
type Output = Wrapping<u16>
& operator.fn bitand(self, other: Wrapping<u16>) -> Wrapping<u16>
& operation. Read more
impl BitAnd for Wrapping<u32>
type Output = Wrapping<u32>
& operator.fn bitand(self, other: Wrapping<u32>) -> Wrapping<u32>
& operation. Read more
impl BitAnd for Wrapping<u64>
type Output = Wrapping<u64>
& operator.fn bitand(self, other: Wrapping<u64>) -> Wrapping<u64>
& operation. Read more
impl BitAnd for Wrapping<u8>
type Output = Wrapping<u8>
& operator.fn bitand(self, other: Wrapping<u8>) -> Wrapping<u8>
& operation. Read more
impl BitAnd for Wrapping<usize>
type Output = Wrapping<usize>
& operator.fn bitand(self, other: Wrapping<usize>) -> Wrapping<usize>
& operation. Read more
impl BitAndAssign<&Wrapping<i128>> for Wrapping<i128>
impl BitAndAssign<&Wrapping<i16>> for Wrapping<i16>
impl BitAndAssign<&Wrapping<i32>> for Wrapping<i32>
impl BitAndAssign<&Wrapping<i64>> for Wrapping<i64>
impl BitAndAssign<&Wrapping<i8>> for Wrapping<i8>
impl BitAndAssign<&Wrapping<isize>> for Wrapping<isize>
impl BitAndAssign<&Wrapping<u128>> for Wrapping<u128>
impl BitAndAssign<&Wrapping<u16>> for Wrapping<u16>
impl BitAndAssign<&Wrapping<u32>> for Wrapping<u32>
impl BitAndAssign<&Wrapping<u64>> for Wrapping<u64>
impl BitAndAssign<&Wrapping<u8>> for Wrapping<u8>
impl BitAndAssign<&Wrapping<usize>> for Wrapping<usize>
impl BitAndAssign<&i128> for Wrapping<i128>
impl BitAndAssign<&i16> for Wrapping<i16>
impl BitAndAssign<&i32> for Wrapping<i32>
impl BitAndAssign<&i64> for Wrapping<i64>
impl BitAndAssign<&i8> for Wrapping<i8>
impl BitAndAssign<&isize> for Wrapping<isize>
impl BitAndAssign<&u128> for Wrapping<u128>
impl BitAndAssign<&u16> for Wrapping<u16>
impl BitAndAssign<&u32> for Wrapping<u32>
impl BitAndAssign<&u64> for Wrapping<u64>
impl BitAndAssign<&u8> for Wrapping<u8>
impl BitAndAssign<&usize> for Wrapping<usize>
impl BitAndAssign<i128> for Wrapping<i128>
impl BitAndAssign<i16> for Wrapping<i16>
impl BitAndAssign<i32> for Wrapping<i32>
impl BitAndAssign<i64> for Wrapping<i64>
impl BitAndAssign<i8> for Wrapping<i8>
impl BitAndAssign<isize> for Wrapping<isize>
impl BitAndAssign<u128> for Wrapping<u128>
impl BitAndAssign<u16> for Wrapping<u16>
impl BitAndAssign<u32> for Wrapping<u32>
impl BitAndAssign<u64> for Wrapping<u64>
impl BitAndAssign<u8> for Wrapping<u8>
impl BitAndAssign<usize> for Wrapping<usize>
impl BitAndAssign for Wrapping<i128>
impl BitAndAssign for Wrapping<i16>
impl BitAndAssign for Wrapping<i32>
impl BitAndAssign for Wrapping<i64>
impl BitAndAssign for Wrapping<i8>
impl BitAndAssign for Wrapping<isize>
impl BitAndAssign for Wrapping<u128>
impl BitAndAssign for Wrapping<u16>
impl BitAndAssign for Wrapping<u32>
impl BitAndAssign for Wrapping<u64>
impl BitAndAssign for Wrapping<u8>
impl BitAndAssign for Wrapping<usize>
impl BitOr<&Wrapping<i128>> for &Wrapping<i128>
type Output = <Wrapping<i128> as BitOr>::Output
| operator.fn bitor(self, other: &Wrapping<i128>) -> <Wrapping<i128> as BitOr>::Output
| operation. Read more
impl BitOr<&Wrapping<i128>> for Wrapping<i128>
type Output = <Wrapping<i128> as BitOr>::Output
| operator.fn bitor(self, other: &Wrapping<i128>) -> <Wrapping<i128> as BitOr>::Output
| operation. Read more
impl BitOr<&Wrapping<i16>> for &Wrapping<i16>
type Output = <Wrapping<i16> as BitOr>::Output
| operator.fn bitor(self, other: &Wrapping<i16>) -> <Wrapping<i16> as BitOr>::Output
| operation. Read more
impl BitOr<&Wrapping<i16>> for Wrapping<i16>
type Output = <Wrapping<i16> as BitOr>::Output
| operator.fn bitor(self, other: &Wrapping<i16>) -> <Wrapping<i16> as BitOr>::Output
| operation. Read more
impl BitOr<&Wrapping<i32>> for &Wrapping<i32>
type Output = <Wrapping<i32> as BitOr>::Output
| operator.fn bitor(self, other: &Wrapping<i32>) -> <Wrapping<i32> as BitOr>::Output
| operation. Read more
impl BitOr<&Wrapping<i32>> for Wrapping<i32>
type Output = <Wrapping<i32> as BitOr>::Output
| operator.fn bitor(self, other: &Wrapping<i32>) -> <Wrapping<i32> as BitOr>::Output
| operation. Read more
impl BitOr<&Wrapping<i64>> for &Wrapping<i64>
type Output = <Wrapping<i64> as BitOr>::Output
| operator.fn bitor(self, other: &Wrapping<i64>) -> <Wrapping<i64> as BitOr>::Output
| operation. Read more
impl BitOr<&Wrapping<i64>> for Wrapping<i64>
type Output = <Wrapping<i64> as BitOr>::Output
| operator.fn bitor(self, other: &Wrapping<i64>) -> <Wrapping<i64> as BitOr>::Output
| operation. Read more
impl BitOr<&Wrapping<i8>> for &Wrapping<i8>
type Output = <Wrapping<i8> as BitOr>::Output
| operator.fn bitor(self, other: &Wrapping<i8>) -> <Wrapping<i8> as BitOr>::Output
| operation. Read more
impl BitOr<&Wrapping<i8>> for Wrapping<i8>
type Output = <Wrapping<i8> as BitOr>::Output
| operator.fn bitor(self, other: &Wrapping<i8>) -> <Wrapping<i8> as BitOr>::Output
| operation. Read more
impl BitOr<&Wrapping<isize>> for &Wrapping<isize>
type Output = <Wrapping<isize> as BitOr>::Output
| operator.fn bitor(self, other: &Wrapping<isize>) -> <Wrapping<isize> as BitOr>::Output
| operation. Read more
impl BitOr<&Wrapping<isize>> for Wrapping<isize>
type Output = <Wrapping<isize> as BitOr>::Output
| operator.fn bitor(self, other: &Wrapping<isize>) -> <Wrapping<isize> as BitOr>::Output
| operation. Read more
impl BitOr<&Wrapping<u128>> for &Wrapping<u128>
type Output = <Wrapping<u128> as BitOr>::Output
| operator.fn bitor(self, other: &Wrapping<u128>) -> <Wrapping<u128> as BitOr>::Output
| operation. Read more
impl BitOr<&Wrapping<u128>> for Wrapping<u128>
type Output = <Wrapping<u128> as BitOr>::Output
| operator.fn bitor(self, other: &Wrapping<u128>) -> <Wrapping<u128> as BitOr>::Output
| operation. Read more
impl BitOr<&Wrapping<u16>> for &Wrapping<u16>
type Output = <Wrapping<u16> as BitOr>::Output
| operator.fn bitor(self, other: &Wrapping<u16>) -> <Wrapping<u16> as BitOr>::Output
| operation. Read more
impl BitOr<&Wrapping<u16>> for Wrapping<u16>
type Output = <Wrapping<u16> as BitOr>::Output
| operator.fn bitor(self, other: &Wrapping<u16>) -> <Wrapping<u16> as BitOr>::Output
| operation. Read more
impl BitOr<&Wrapping<u32>> for &Wrapping<u32>
type Output = <Wrapping<u32> as BitOr>::Output
| operator.fn bitor(self, other: &Wrapping<u32>) -> <Wrapping<u32> as BitOr>::Output
| operation. Read more
impl BitOr<&Wrapping<u32>> for Wrapping<u32>
type Output = <Wrapping<u32> as BitOr>::Output
| operator.fn bitor(self, other: &Wrapping<u32>) -> <Wrapping<u32> as BitOr>::Output
| operation. Read more
impl BitOr<&Wrapping<u64>> for &Wrapping<u64>
type Output = <Wrapping<u64> as BitOr>::Output
| operator.fn bitor(self, other: &Wrapping<u64>) -> <Wrapping<u64> as BitOr>::Output
| operation. Read more
impl BitOr<&Wrapping<u64>> for Wrapping<u64>
type Output = <Wrapping<u64> as BitOr>::Output
| operator.fn bitor(self, other: &Wrapping<u64>) -> <Wrapping<u64> as BitOr>::Output
| operation. Read more
impl BitOr<&Wrapping<u8>> for &Wrapping<u8>
type Output = <Wrapping<u8> as BitOr>::Output
| operator.fn bitor(self, other: &Wrapping<u8>) -> <Wrapping<u8> as BitOr>::Output
| operation. Read more
impl BitOr<&Wrapping<u8>> for Wrapping<u8>
type Output = <Wrapping<u8> as BitOr>::Output
| operator.fn bitor(self, other: &Wrapping<u8>) -> <Wrapping<u8> as BitOr>::Output
| operation. Read more
impl BitOr<&Wrapping<usize>> for &Wrapping<usize>
type Output = <Wrapping<usize> as BitOr>::Output
| operator.fn bitor(self, other: &Wrapping<usize>) -> <Wrapping<usize> as BitOr>::Output
| operation. Read more
impl BitOr<&Wrapping<usize>> for Wrapping<usize>
type Output = <Wrapping<usize> as BitOr>::Output
| operator.fn bitor(self, other: &Wrapping<usize>) -> <Wrapping<usize> as BitOr>::Output
| operation. Read more
impl BitOr<Wrapping<i128>> for &Wrapping<i128>
type Output = <Wrapping<i128> as BitOr>::Output
| operator.fn bitor(self, other: Wrapping<i128>) -> <Wrapping<i128> as BitOr>::Output
| operation. Read more
impl BitOr<Wrapping<i16>> for &Wrapping<i16>
type Output = <Wrapping<i16> as BitOr>::Output
| operator.fn bitor(self, other: Wrapping<i16>) -> <Wrapping<i16> as BitOr>::Output
| operation. Read more
impl BitOr<Wrapping<i32>> for &Wrapping<i32>
type Output = <Wrapping<i32> as BitOr>::Output
| operator.fn bitor(self, other: Wrapping<i32>) -> <Wrapping<i32> as BitOr>::Output
| operation. Read more
impl BitOr<Wrapping<i64>> for &Wrapping<i64>
type Output = <Wrapping<i64> as BitOr>::Output
| operator.fn bitor(self, other: Wrapping<i64>) -> <Wrapping<i64> as BitOr>::Output
| operation. Read more
impl BitOr<Wrapping<i8>> for &Wrapping<i8>
type Output = <Wrapping<i8> as BitOr>::Output
| operator.fn bitor(self, other: Wrapping<i8>) -> <Wrapping<i8> as BitOr>::Output
| operation. Read more
impl BitOr<Wrapping<isize>> for &Wrapping<isize>
type Output = <Wrapping<isize> as BitOr>::Output
| operator.fn bitor(self, other: Wrapping<isize>) -> <Wrapping<isize> as BitOr>::Output
| operation. Read more
impl BitOr<Wrapping<u128>> for &Wrapping<u128>
type Output = <Wrapping<u128> as BitOr>::Output
| operator.fn bitor(self, other: Wrapping<u128>) -> <Wrapping<u128> as BitOr>::Output
| operation. Read more
impl BitOr<Wrapping<u16>> for &Wrapping<u16>
type Output = <Wrapping<u16> as BitOr>::Output
| operator.fn bitor(self, other: Wrapping<u16>) -> <Wrapping<u16> as BitOr>::Output
| operation. Read more
impl BitOr<Wrapping<u32>> for &Wrapping<u32>
type Output = <Wrapping<u32> as BitOr>::Output
| operator.fn bitor(self, other: Wrapping<u32>) -> <Wrapping<u32> as BitOr>::Output
| operation. Read more
impl BitOr<Wrapping<u64>> for &Wrapping<u64>
type Output = <Wrapping<u64> as BitOr>::Output
| operator.fn bitor(self, other: Wrapping<u64>) -> <Wrapping<u64> as BitOr>::Output
| operation. Read more
impl BitOr<Wrapping<u8>> for &Wrapping<u8>
type Output = <Wrapping<u8> as BitOr>::Output
| operator.fn bitor(self, other: Wrapping<u8>) -> <Wrapping<u8> as BitOr>::Output
| operation. Read more
impl BitOr<Wrapping<usize>> for &Wrapping<usize>
type Output = <Wrapping<usize> as BitOr>::Output
| operator.fn bitor(self, other: Wrapping<usize>) -> <Wrapping<usize> as BitOr>::Output
| operation. Read more
impl BitOr for Wrapping<i128>
type Output = Wrapping<i128>
| operator.fn bitor(self, other: Wrapping<i128>) -> Wrapping<i128>
| operation. Read more
impl BitOr for Wrapping<i16>
type Output = Wrapping<i16>
| operator.fn bitor(self, other: Wrapping<i16>) -> Wrapping<i16>
| operation. Read more
impl BitOr for Wrapping<i32>
type Output = Wrapping<i32>
| operator.fn bitor(self, other: Wrapping<i32>) -> Wrapping<i32>
| operation. Read more
impl BitOr for Wrapping<i64>
type Output = Wrapping<i64>
| operator.fn bitor(self, other: Wrapping<i64>) -> Wrapping<i64>
| operation. Read more
impl BitOr for Wrapping<i8>
type Output = Wrapping<i8>
| operator.fn bitor(self, other: Wrapping<i8>) -> Wrapping<i8>
| operation. Read more
impl BitOr for Wrapping<isize>
type Output = Wrapping<isize>
| operator.fn bitor(self, other: Wrapping<isize>) -> Wrapping<isize>
| operation. Read more
impl BitOr for Wrapping<u128>
type Output = Wrapping<u128>
| operator.fn bitor(self, other: Wrapping<u128>) -> Wrapping<u128>
| operation. Read more
impl BitOr for Wrapping<u16>
type Output = Wrapping<u16>
| operator.fn bitor(self, other: Wrapping<u16>) -> Wrapping<u16>
| operation. Read more
impl BitOr for Wrapping<u32>
type Output = Wrapping<u32>
| operator.fn bitor(self, other: Wrapping<u32>) -> Wrapping<u32>
| operation. Read more
impl BitOr for Wrapping<u64>
type Output = Wrapping<u64>
| operator.fn bitor(self, other: Wrapping<u64>) -> Wrapping<u64>
| operation. Read more
impl BitOr for Wrapping<u8>
type Output = Wrapping<u8>
| operator.fn bitor(self, other: Wrapping<u8>) -> Wrapping<u8>
| operation. Read more
impl BitOr for Wrapping<usize>
type Output = Wrapping<usize>
| operator.fn bitor(self, other: Wrapping<usize>) -> Wrapping<usize>
| operation. Read more
impl BitOrAssign<&Wrapping<i128>> for Wrapping<i128>
impl BitOrAssign<&Wrapping<i16>> for Wrapping<i16>
impl BitOrAssign<&Wrapping<i32>> for Wrapping<i32>
impl BitOrAssign<&Wrapping<i64>> for Wrapping<i64>
impl BitOrAssign<&Wrapping<i8>> for Wrapping<i8>
impl BitOrAssign<&Wrapping<isize>> for Wrapping<isize>
impl BitOrAssign<&Wrapping<u128>> for Wrapping<u128>
impl BitOrAssign<&Wrapping<u16>> for Wrapping<u16>
impl BitOrAssign<&Wrapping<u32>> for Wrapping<u32>
impl BitOrAssign<&Wrapping<u64>> for Wrapping<u64>
impl BitOrAssign<&Wrapping<u8>> for Wrapping<u8>
impl BitOrAssign<&Wrapping<usize>> for Wrapping<usize>
impl BitOrAssign<&i128> for Wrapping<i128>
impl BitOrAssign<&i16> for Wrapping<i16>
impl BitOrAssign<&i32> for Wrapping<i32>
impl BitOrAssign<&i64> for Wrapping<i64>
impl BitOrAssign<&i8> for Wrapping<i8>
impl BitOrAssign<&isize> for Wrapping<isize>
impl BitOrAssign<&u128> for Wrapping<u128>
impl BitOrAssign<&u16> for Wrapping<u16>
impl BitOrAssign<&u32> for Wrapping<u32>
impl BitOrAssign<&u64> for Wrapping<u64>
impl BitOrAssign<&u8> for Wrapping<u8>
impl BitOrAssign<&usize> for Wrapping<usize>
impl BitOrAssign<i128> for Wrapping<i128>
impl BitOrAssign<i16> for Wrapping<i16>
impl BitOrAssign<i32> for Wrapping<i32>
impl BitOrAssign<i64> for Wrapping<i64>
impl BitOrAssign<i8> for Wrapping<i8>
impl BitOrAssign<isize> for Wrapping<isize>
impl BitOrAssign<u128> for Wrapping<u128>
impl BitOrAssign<u16> for Wrapping<u16>
impl BitOrAssign<u32> for Wrapping<u32>
impl BitOrAssign<u64> for Wrapping<u64>
impl BitOrAssign<u8> for Wrapping<u8>
impl BitOrAssign<usize> for Wrapping<usize>
impl BitOrAssign for Wrapping<i128>
impl BitOrAssign for Wrapping<i16>
impl BitOrAssign for Wrapping<i32>
impl BitOrAssign for Wrapping<i64>
impl BitOrAssign for Wrapping<i8>
impl BitOrAssign for Wrapping<isize>
impl BitOrAssign for Wrapping<u128>
impl BitOrAssign for Wrapping<u16>
impl BitOrAssign for Wrapping<u32>
impl BitOrAssign for Wrapping<u64>
impl BitOrAssign for Wrapping<u8>
impl BitOrAssign for Wrapping<usize>
impl BitXor<&Wrapping<i128>> for &Wrapping<i128>
type Output = <Wrapping<i128> as BitXor>::Output
^ operator.fn bitxor(self, other: &Wrapping<i128>) -> <Wrapping<i128> as BitXor>::Output
^ operation. Read more
impl BitXor<&Wrapping<i128>> for Wrapping<i128>
type Output = <Wrapping<i128> as BitXor>::Output
^ operator.fn bitxor(self, other: &Wrapping<i128>) -> <Wrapping<i128> as BitXor>::Output
^ operation. Read more
impl BitXor<&Wrapping<i16>> for &Wrapping<i16>
type Output = <Wrapping<i16> as BitXor>::Output
^ operator.fn bitxor(self, other: &Wrapping<i16>) -> <Wrapping<i16> as BitXor>::Output
^ operation. Read more
impl BitXor<&Wrapping<i16>> for Wrapping<i16>
type Output = <Wrapping<i16> as BitXor>::Output
^ operator.fn bitxor(self, other: &Wrapping<i16>) -> <Wrapping<i16> as BitXor>::Output
^ operation. Read more
impl BitXor<&Wrapping<i32>> for &Wrapping<i32>
type Output = <Wrapping<i32> as BitXor>::Output
^ operator.fn bitxor(self, other: &Wrapping<i32>) -> <Wrapping<i32> as BitXor>::Output
^ operation. Read more
impl BitXor<&Wrapping<i32>> for Wrapping<i32>
type Output = <Wrapping<i32> as BitXor>::Output
^ operator.fn bitxor(self, other: &Wrapping<i32>) -> <Wrapping<i32> as BitXor>::Output
^ operation. Read more
impl BitXor<&Wrapping<i64>> for &Wrapping<i64>
type Output = <Wrapping<i64> as BitXor>::Output
^ operator.fn bitxor(self, other: &Wrapping<i64>) -> <Wrapping<i64> as BitXor>::Output
^ operation. Read more
impl BitXor<&Wrapping<i64>> for Wrapping<i64>
type Output = <Wrapping<i64> as BitXor>::Output
^ operator.fn bitxor(self, other: &Wrapping<i64>) -> <Wrapping<i64> as BitXor>::Output
^ operation. Read more
impl BitXor<&Wrapping<i8>> for &Wrapping<i8>
type Output = <Wrapping<i8> as BitXor>::Output
^ operator.fn bitxor(self, other: &Wrapping<i8>) -> <Wrapping<i8> as BitXor>::Output
^ operation. Read more
impl BitXor<&Wrapping<i8>> for Wrapping<i8>
type Output = <Wrapping<i8> as BitXor>::Output
^ operator.fn bitxor(self, other: &Wrapping<i8>) -> <Wrapping<i8> as BitXor>::Output
^ operation. Read more
impl BitXor<&Wrapping<isize>> for &Wrapping<isize>
type Output = <Wrapping<isize> as BitXor>::Output
^ operator.fn bitxor(self, other: &Wrapping<isize>) -> <Wrapping<isize> as BitXor>::Output
^ operation. Read more
impl BitXor<&Wrapping<isize>> for Wrapping<isize>
type Output = <Wrapping<isize> as BitXor>::Output
^ operator.fn bitxor(self, other: &Wrapping<isize>) -> <Wrapping<isize> as BitXor>::Output
^ operation. Read more
impl BitXor<&Wrapping<u128>> for &Wrapping<u128>
type Output = <Wrapping<u128> as BitXor>::Output
^ operator.fn bitxor(self, other: &Wrapping<u128>) -> <Wrapping<u128> as BitXor>::Output
^ operation. Read more
impl BitXor<&Wrapping<u128>> for Wrapping<u128>
type Output = <Wrapping<u128> as BitXor>::Output
^ operator.fn bitxor(self, other: &Wrapping<u128>) -> <Wrapping<u128> as BitXor>::Output
^ operation. Read more
impl BitXor<&Wrapping<u16>> for &Wrapping<u16>
type Output = <Wrapping<u16> as BitXor>::Output
^ operator.fn bitxor(self, other: &Wrapping<u16>) -> <Wrapping<u16> as BitXor>::Output
^ operation. Read more
impl BitXor<&Wrapping<u16>> for Wrapping<u16>
type Output = <Wrapping<u16> as BitXor>::Output
^ operator.fn bitxor(self, other: &Wrapping<u16>) -> <Wrapping<u16> as BitXor>::Output
^ operation. Read more
impl BitXor<&Wrapping<u32>> for &Wrapping<u32>
type Output = <Wrapping<u32> as BitXor>::Output
^ operator.fn bitxor(self, other: &Wrapping<u32>) -> <Wrapping<u32> as BitXor>::Output
^ operation. Read more
impl BitXor<&Wrapping<u32>> for Wrapping<u32>
type Output = <Wrapping<u32> as BitXor>::Output
^ operator.fn bitxor(self, other: &Wrapping<u32>) -> <Wrapping<u32> as BitXor>::Output
^ operation. Read more
impl BitXor<&Wrapping<u64>> for &Wrapping<u64>
type Output = <Wrapping<u64> as BitXor>::Output
^ operator.fn bitxor(self, other: &Wrapping<u64>) -> <Wrapping<u64> as BitXor>::Output
^ operation. Read more
impl BitXor<&Wrapping<u64>> for Wrapping<u64>
type Output = <Wrapping<u64> as BitXor>::Output
^ operator.fn bitxor(self, other: &Wrapping<u64>) -> <Wrapping<u64> as BitXor>::Output
^ operation. Read more
impl BitXor<&Wrapping<u8>> for &Wrapping<u8>
type Output = <Wrapping<u8> as BitXor>::Output
^ operator.fn bitxor(self, other: &Wrapping<u8>) -> <Wrapping<u8> as BitXor>::Output
^ operation. Read more
impl BitXor<&Wrapping<u8>> for Wrapping<u8>
type Output = <Wrapping<u8> as BitXor>::Output
^ operator.fn bitxor(self, other: &Wrapping<u8>) -> <Wrapping<u8> as BitXor>::Output
^ operation. Read more
impl BitXor<&Wrapping<usize>> for &Wrapping<usize>
type Output = <Wrapping<usize> as BitXor>::Output
^ operator.fn bitxor(self, other: &Wrapping<usize>) -> <Wrapping<usize> as BitXor>::Output
^ operation. Read more
impl BitXor<&Wrapping<usize>> for Wrapping<usize>
type Output = <Wrapping<usize> as BitXor>::Output
^ operator.fn bitxor(self, other: &Wrapping<usize>) -> <Wrapping<usize> as BitXor>::Output
^ operation. Read more
impl BitXor<Wrapping<i128>> for &Wrapping<i128>
type Output = <Wrapping<i128> as BitXor>::Output
^ operator.fn bitxor(self, other: Wrapping<i128>) -> <Wrapping<i128> as BitXor>::Output
^ operation. Read more
impl BitXor<Wrapping<i16>> for &Wrapping<i16>
type Output = <Wrapping<i16> as BitXor>::Output
^ operator.fn bitxor(self, other: Wrapping<i16>) -> <Wrapping<i16> as BitXor>::Output
^ operation. Read more
impl BitXor<Wrapping<i32>> for &Wrapping<i32>
type Output = <Wrapping<i32> as BitXor>::Output
^ operator.fn bitxor(self, other: Wrapping<i32>) -> <Wrapping<i32> as BitXor>::Output
^ operation. Read more
impl BitXor<Wrapping<i64>> for &Wrapping<i64>
type Output = <Wrapping<i64> as BitXor>::Output
^ operator.fn bitxor(self, other: Wrapping<i64>) -> <Wrapping<i64> as BitXor>::Output
^ operation. Read more
impl BitXor<Wrapping<i8>> for &Wrapping<i8>
type Output = <Wrapping<i8> as BitXor>::Output
^ operator.fn bitxor(self, other: Wrapping<i8>) -> <Wrapping<i8> as BitXor>::Output
^ operation. Read more
impl BitXor<Wrapping<isize>> for &Wrapping<isize>
type Output = <Wrapping<isize> as BitXor>::Output
^ operator.fn bitxor(self, other: Wrapping<isize>) -> <Wrapping<isize> as BitXor>::Output
^ operation. Read more
impl BitXor<Wrapping<u128>> for &Wrapping<u128>
type Output = <Wrapping<u128> as BitXor>::Output
^ operator.fn bitxor(self, other: Wrapping<u128>) -> <Wrapping<u128> as BitXor>::Output
^ operation. Read more
impl BitXor<Wrapping<u16>> for &Wrapping<u16>
type Output = <Wrapping<u16> as BitXor>::Output
^ operator.fn bitxor(self, other: Wrapping<u16>) -> <Wrapping<u16> as BitXor>::Output
^ operation. Read more
impl BitXor<Wrapping<u32>> for &Wrapping<u32>
type Output = <Wrapping<u32> as BitXor>::Output
^ operator.fn bitxor(self, other: Wrapping<u32>) -> <Wrapping<u32> as BitXor>::Output
^ operation. Read more
impl BitXor<Wrapping<u64>> for &Wrapping<u64>
type Output = <Wrapping<u64> as BitXor>::Output
^ operator.fn bitxor(self, other: Wrapping<u64>) -> <Wrapping<u64> as BitXor>::Output
^ operation. Read more
impl BitXor<Wrapping<u8>> for &Wrapping<u8>
type Output = <Wrapping<u8> as BitXor>::Output
^ operator.fn bitxor(self, other: Wrapping<u8>) -> <Wrapping<u8> as BitXor>::Output
^ operation. Read more
impl BitXor<Wrapping<usize>> for &Wrapping<usize>
type Output = <Wrapping<usize> as BitXor>::Output
^ operator.fn bitxor(self, other: Wrapping<usize>) -> <Wrapping<usize> as BitXor>::Output
^ operation. Read more
impl BitXor for Wrapping<i128>
type Output = Wrapping<i128>
^ operator.fn bitxor(self, other: Wrapping<i128>) -> Wrapping<i128>
^ operation. Read more
impl BitXor for Wrapping<i16>
type Output = Wrapping<i16>
^ operator.fn bitxor(self, other: Wrapping<i16>) -> Wrapping<i16>
^ operation. Read more
impl BitXor for Wrapping<i32>
type Output = Wrapping<i32>
^ operator.fn bitxor(self, other: Wrapping<i32>) -> Wrapping<i32>
^ operation. Read more
impl BitXor for Wrapping<i64>
type Output = Wrapping<i64>
^ operator.fn bitxor(self, other: Wrapping<i64>) -> Wrapping<i64>
^ operation. Read more
impl BitXor for Wrapping<i8>
type Output = Wrapping<i8>
^ operator.fn bitxor(self, other: Wrapping<i8>) -> Wrapping<i8>
^ operation. Read more
impl BitXor for Wrapping<isize>
type Output = Wrapping<isize>
^ operator.fn bitxor(self, other: Wrapping<isize>) -> Wrapping<isize>
^ operation. Read more
impl BitXor for Wrapping<u128>
type Output = Wrapping<u128>
^ operator.fn bitxor(self, other: Wrapping<u128>) -> Wrapping<u128>
^ operation. Read more
impl BitXor for Wrapping<u16>
type Output = Wrapping<u16>
^ operator.fn bitxor(self, other: Wrapping<u16>) -> Wrapping<u16>
^ operation. Read more
impl BitXor for Wrapping<u32>
type Output = Wrapping<u32>
^ operator.fn bitxor(self, other: Wrapping<u32>) -> Wrapping<u32>
^ operation. Read more
impl BitXor for Wrapping<u64>
type Output = Wrapping<u64>
^ operator.fn bitxor(self, other: Wrapping<u64>) -> Wrapping<u64>
^ operation. Read more
impl BitXor for Wrapping<u8>
type Output = Wrapping<u8>
^ operator.fn bitxor(self, other: Wrapping<u8>) -> Wrapping<u8>
^ operation. Read more
impl BitXor for Wrapping<usize>
type Output = Wrapping<usize>
^ operator.fn bitxor(self, other: Wrapping<usize>) -> Wrapping<usize>
^ operation. Read more
impl BitXorAssign<&Wrapping<i128>> for Wrapping<i128>
impl BitXorAssign<&Wrapping<i16>> for Wrapping<i16>
impl BitXorAssign<&Wrapping<i32>> for Wrapping<i32>
impl BitXorAssign<&Wrapping<i64>> for Wrapping<i64>
impl BitXorAssign<&Wrapping<i8>> for Wrapping<i8>
impl BitXorAssign<&Wrapping<isize>> for Wrapping<isize>
impl BitXorAssign<&Wrapping<u128>> for Wrapping<u128>
impl BitXorAssign<&Wrapping<u16>> for Wrapping<u16>
impl BitXorAssign<&Wrapping<u32>> for Wrapping<u32>
impl BitXorAssign<&Wrapping<u64>> for Wrapping<u64>
impl BitXorAssign<&Wrapping<u8>> for Wrapping<u8>
impl BitXorAssign<&Wrapping<usize>> for Wrapping<usize>
impl BitXorAssign<&i128> for Wrapping<i128>
impl BitXorAssign<&i16> for Wrapping<i16>
impl BitXorAssign<&i32> for Wrapping<i32>
impl BitXorAssign<&i64> for Wrapping<i64>
impl BitXorAssign<&i8> for Wrapping<i8>
impl BitXorAssign<&isize> for Wrapping<isize>
impl BitXorAssign<&u128> for Wrapping<u128>
impl BitXorAssign<&u16> for Wrapping<u16>
impl BitXorAssign<&u32> for Wrapping<u32>
impl BitXorAssign<&u64> for Wrapping<u64>
impl BitXorAssign<&u8> for Wrapping<u8>
impl BitXorAssign<&usize> for Wrapping<usize>
impl BitXorAssign<i128> for Wrapping<i128>
impl BitXorAssign<i16> for Wrapping<i16>
impl BitXorAssign<i32> for Wrapping<i32>
impl BitXorAssign<i64> for Wrapping<i64>
impl BitXorAssign<i8> for Wrapping<i8>
impl BitXorAssign<isize> for Wrapping<isize>
impl BitXorAssign<u128> for Wrapping<u128>
impl BitXorAssign<u16> for Wrapping<u16>
impl BitXorAssign<u32> for Wrapping<u32>
impl BitXorAssign<u64> for Wrapping<u64>
impl BitXorAssign<u8> for Wrapping<u8>
impl BitXorAssign<usize> for Wrapping<usize>
impl BitXorAssign for Wrapping<i128>
impl BitXorAssign for Wrapping<i16>
impl BitXorAssign for Wrapping<i32>
impl BitXorAssign for Wrapping<i64>
impl BitXorAssign for Wrapping<i8>
impl BitXorAssign for Wrapping<isize>
impl BitXorAssign for Wrapping<u128>
impl BitXorAssign for Wrapping<u16>
impl BitXorAssign for Wrapping<u32>
impl BitXorAssign for Wrapping<u64>
impl BitXorAssign for Wrapping<u8>
impl BitXorAssign for Wrapping<usize>
impl<T> Clone for Wrapping<T>where
T: Clone,fn clone(&self) -> Wrapping<T>
fn clone_from(&mut self, source: &Self)
source. Read more
impl<T> Debug for Wrapping<T>where
T: Debug,fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>
impl<T> Default for Wrapping<T>where
T: Default,impl<T> Display for Wrapping<T>where
T: Display,fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>
impl Div<&Wrapping<i128>> for &Wrapping<i128>
type Output = <Wrapping<i128> as Div>::Output
/ operator.fn div(self, other: &Wrapping<i128>) -> <Wrapping<i128> as Div>::Output
/ operation. Read more
impl Div<&Wrapping<i128>> for Wrapping<i128>
type Output = <Wrapping<i128> as Div>::Output
/ operator.fn div(self, other: &Wrapping<i128>) -> <Wrapping<i128> as Div>::Output
/ operation. Read more
impl Div<&Wrapping<i16>> for &Wrapping<i16>
type Output = <Wrapping<i16> as Div>::Output
/ operator.fn div(self, other: &Wrapping<i16>) -> <Wrapping<i16> as Div>::Output
/ operation. Read more
impl Div<&Wrapping<i16>> for Wrapping<i16>
type Output = <Wrapping<i16> as Div>::Output
/ operator.fn div(self, other: &Wrapping<i16>) -> <Wrapping<i16> as Div>::Output
/ operation. Read more
impl Div<&Wrapping<i32>> for &Wrapping<i32>
type Output = <Wrapping<i32> as Div>::Output
/ operator.fn div(self, other: &Wrapping<i32>) -> <Wrapping<i32> as Div>::Output
/ operation. Read more
impl Div<&Wrapping<i32>> for Wrapping<i32>
type Output = <Wrapping<i32> as Div>::Output
/ operator.fn div(self, other: &Wrapping<i32>) -> <Wrapping<i32> as Div>::Output
/ operation. Read more
impl Div<&Wrapping<i64>> for &Wrapping<i64>
type Output = <Wrapping<i64> as Div>::Output
/ operator.fn div(self, other: &Wrapping<i64>) -> <Wrapping<i64> as Div>::Output
/ operation. Read more
impl Div<&Wrapping<i64>> for Wrapping<i64>
type Output = <Wrapping<i64> as Div>::Output
/ operator.fn div(self, other: &Wrapping<i64>) -> <Wrapping<i64> as Div>::Output
/ operation. Read more
impl Div<&Wrapping<i8>> for &Wrapping<i8>
type Output = <Wrapping<i8> as Div>::Output
/ operator.fn div(self, other: &Wrapping<i8>) -> <Wrapping<i8> as Div>::Output
/ operation. Read more
impl Div<&Wrapping<i8>> for Wrapping<i8>
type Output = <Wrapping<i8> as Div>::Output
/ operator.fn div(self, other: &Wrapping<i8>) -> <Wrapping<i8> as Div>::Output
/ operation. Read more
impl Div<&Wrapping<isize>> for &Wrapping<isize>
type Output = <Wrapping<isize> as Div>::Output
/ operator.fn div(self, other: &Wrapping<isize>) -> <Wrapping<isize> as Div>::Output
/ operation. Read more
impl Div<&Wrapping<isize>> for Wrapping<isize>
type Output = <Wrapping<isize> as Div>::Output
/ operator.fn div(self, other: &Wrapping<isize>) -> <Wrapping<isize> as Div>::Output
/ operation. Read more
impl Div<&Wrapping<u128>> for &Wrapping<u128>
type Output = <Wrapping<u128> as Div>::Output
/ operator.fn div(self, other: &Wrapping<u128>) -> <Wrapping<u128> as Div>::Output
/ operation. Read more
impl Div<&Wrapping<u128>> for Wrapping<u128>
type Output = <Wrapping<u128> as Div>::Output
/ operator.fn div(self, other: &Wrapping<u128>) -> <Wrapping<u128> as Div>::Output
/ operation. Read more
impl Div<&Wrapping<u16>> for &Wrapping<u16>
type Output = <Wrapping<u16> as Div>::Output
/ operator.fn div(self, other: &Wrapping<u16>) -> <Wrapping<u16> as Div>::Output
/ operation. Read more
impl Div<&Wrapping<u16>> for Wrapping<u16>
type Output = <Wrapping<u16> as Div>::Output
/ operator.fn div(self, other: &Wrapping<u16>) -> <Wrapping<u16> as Div>::Output
/ operation. Read more
impl Div<&Wrapping<u32>> for &Wrapping<u32>
type Output = <Wrapping<u32> as Div>::Output
/ operator.fn div(self, other: &Wrapping<u32>) -> <Wrapping<u32> as Div>::Output
/ operation. Read more
impl Div<&Wrapping<u32>> for Wrapping<u32>
type Output = <Wrapping<u32> as Div>::Output
/ operator.fn div(self, other: &Wrapping<u32>) -> <Wrapping<u32> as Div>::Output
/ operation. Read more
impl Div<&Wrapping<u64>> for &Wrapping<u64>
type Output = <Wrapping<u64> as Div>::Output
/ operator.fn div(self, other: &Wrapping<u64>) -> <Wrapping<u64> as Div>::Output
/ operation. Read more
impl Div<&Wrapping<u64>> for Wrapping<u64>
type Output = <Wrapping<u64> as Div>::Output
/ operator.fn div(self, other: &Wrapping<u64>) -> <Wrapping<u64> as Div>::Output
/ operation. Read more
impl Div<&Wrapping<u8>> for &Wrapping<u8>
type Output = <Wrapping<u8> as Div>::Output
/ operator.fn div(self, other: &Wrapping<u8>) -> <Wrapping<u8> as Div>::Output
/ operation. Read more
impl Div<&Wrapping<u8>> for Wrapping<u8>
type Output = <Wrapping<u8> as Div>::Output
/ operator.fn div(self, other: &Wrapping<u8>) -> <Wrapping<u8> as Div>::Output
/ operation. Read more
impl Div<&Wrapping<usize>> for &Wrapping<usize>
type Output = <Wrapping<usize> as Div>::Output
/ operator.fn div(self, other: &Wrapping<usize>) -> <Wrapping<usize> as Div>::Output
/ operation. Read more
impl Div<&Wrapping<usize>> for Wrapping<usize>
type Output = <Wrapping<usize> as Div>::Output
/ operator.fn div(self, other: &Wrapping<usize>) -> <Wrapping<usize> as Div>::Output
/ operation. Read more
impl Div<Wrapping<i128>> for &Wrapping<i128>
type Output = <Wrapping<i128> as Div>::Output
/ operator.fn div(self, other: Wrapping<i128>) -> <Wrapping<i128> as Div>::Output
/ operation. Read more
impl Div<Wrapping<i16>> for &Wrapping<i16>
type Output = <Wrapping<i16> as Div>::Output
/ operator.fn div(self, other: Wrapping<i16>) -> <Wrapping<i16> as Div>::Output
/ operation. Read more
impl Div<Wrapping<i32>> for &Wrapping<i32>
type Output = <Wrapping<i32> as Div>::Output
/ operator.fn div(self, other: Wrapping<i32>) -> <Wrapping<i32> as Div>::Output
/ operation. Read more
impl Div<Wrapping<i64>> for &Wrapping<i64>
type Output = <Wrapping<i64> as Div>::Output
/ operator.fn div(self, other: Wrapping<i64>) -> <Wrapping<i64> as Div>::Output
/ operation. Read more
impl Div<Wrapping<i8>> for &Wrapping<i8>
type Output = <Wrapping<i8> as Div>::Output
/ operator.fn div(self, other: Wrapping<i8>) -> <Wrapping<i8> as Div>::Output
/ operation. Read more
impl Div<Wrapping<isize>> for &Wrapping<isize>
type Output = <Wrapping<isize> as Div>::Output
/ operator.fn div(self, other: Wrapping<isize>) -> <Wrapping<isize> as Div>::Output
/ operation. Read more
impl Div<Wrapping<u128>> for &Wrapping<u128>
type Output = <Wrapping<u128> as Div>::Output
/ operator.fn div(self, other: Wrapping<u128>) -> <Wrapping<u128> as Div>::Output
/ operation. Read more
impl Div<Wrapping<u16>> for &Wrapping<u16>
type Output = <Wrapping<u16> as Div>::Output
/ operator.fn div(self, other: Wrapping<u16>) -> <Wrapping<u16> as Div>::Output
/ operation. Read more
impl Div<Wrapping<u32>> for &Wrapping<u32>
type Output = <Wrapping<u32> as Div>::Output
/ operator.fn div(self, other: Wrapping<u32>) -> <Wrapping<u32> as Div>::Output
/ operation. Read more
impl Div<Wrapping<u64>> for &Wrapping<u64>
type Output = <Wrapping<u64> as Div>::Output
/ operator.fn div(self, other: Wrapping<u64>) -> <Wrapping<u64> as Div>::Output
/ operation. Read more
impl Div<Wrapping<u8>> for &Wrapping<u8>
type Output = <Wrapping<u8> as Div>::Output
/ operator.fn div(self, other: Wrapping<u8>) -> <Wrapping<u8> as Div>::Output
/ operation. Read more
impl Div<Wrapping<usize>> for &Wrapping<usize>
type Output = <Wrapping<usize> as Div>::Output
/ operator.fn div(self, other: Wrapping<usize>) -> <Wrapping<usize> as Div>::Output
/ operation. Read more
impl Div for Wrapping<i128>
type Output = Wrapping<i128>
/ operator.fn div(self, other: Wrapping<i128>) -> Wrapping<i128>
/ operation. Read more
impl Div for Wrapping<i16>
type Output = Wrapping<i16>
/ operator.fn div(self, other: Wrapping<i16>) -> Wrapping<i16>
/ operation. Read more
impl Div for Wrapping<i32>
type Output = Wrapping<i32>
/ operator.fn div(self, other: Wrapping<i32>) -> Wrapping<i32>
/ operation. Read more
impl Div for Wrapping<i64>
type Output = Wrapping<i64>
/ operator.fn div(self, other: Wrapping<i64>) -> Wrapping<i64>
/ operation. Read more
impl Div for Wrapping<i8>
type Output = Wrapping<i8>
/ operator.fn div(self, other: Wrapping<i8>) -> Wrapping<i8>
/ operation. Read more
impl Div for Wrapping<isize>
type Output = Wrapping<isize>
/ operator.fn div(self, other: Wrapping<isize>) -> Wrapping<isize>
/ operation. Read more
impl Div for Wrapping<u128>
type Output = Wrapping<u128>
/ operator.fn div(self, other: Wrapping<u128>) -> Wrapping<u128>
/ operation. Read more
impl Div for Wrapping<u16>
type Output = Wrapping<u16>
/ operator.fn div(self, other: Wrapping<u16>) -> Wrapping<u16>
/ operation. Read more
impl Div for Wrapping<u32>
type Output = Wrapping<u32>
/ operator.fn div(self, other: Wrapping<u32>) -> Wrapping<u32>
/ operation. Read more
impl Div for Wrapping<u64>
type Output = Wrapping<u64>
/ operator.fn div(self, other: Wrapping<u64>) -> Wrapping<u64>
/ operation. Read more
impl Div for Wrapping<u8>
type Output = Wrapping<u8>
/ operator.fn div(self, other: Wrapping<u8>) -> Wrapping<u8>
/ operation. Read more
impl Div for Wrapping<usize>
type Output = Wrapping<usize>
/ operator.fn div(self, other: Wrapping<usize>) -> Wrapping<usize>
/ operation. Read more
impl DivAssign<&Wrapping<i128>> for Wrapping<i128>
impl DivAssign<&Wrapping<i16>> for Wrapping<i16>
impl DivAssign<&Wrapping<i32>> for Wrapping<i32>
impl DivAssign<&Wrapping<i64>> for Wrapping<i64>
impl DivAssign<&Wrapping<i8>> for Wrapping<i8>
impl DivAssign<&Wrapping<isize>> for Wrapping<isize>
impl DivAssign<&Wrapping<u128>> for Wrapping<u128>
impl DivAssign<&Wrapping<u16>> for Wrapping<u16>
impl DivAssign<&Wrapping<u32>> for Wrapping<u32>
impl DivAssign<&Wrapping<u64>> for Wrapping<u64>
impl DivAssign<&Wrapping<u8>> for Wrapping<u8>
impl DivAssign<&Wrapping<usize>> for Wrapping<usize>
impl DivAssign<&i128> for Wrapping<i128>
impl DivAssign<&i16> for Wrapping<i16>
impl DivAssign<&i32> for Wrapping<i32>
impl DivAssign<&i64> for Wrapping<i64>
impl DivAssign<&i8> for Wrapping<i8>
impl DivAssign<&isize> for Wrapping<isize>
impl DivAssign<&u128> for Wrapping<u128>
impl DivAssign<&u16> for Wrapping<u16>
impl DivAssign<&u32> for Wrapping<u32>
impl DivAssign<&u64> for Wrapping<u64>
impl DivAssign<&u8> for Wrapping<u8>
impl DivAssign<&usize> for Wrapping<usize>
impl DivAssign<i128> for Wrapping<i128>
impl DivAssign<i16> for Wrapping<i16>
impl DivAssign<i32> for Wrapping<i32>
impl DivAssign<i64> for Wrapping<i64>
impl DivAssign<i8> for Wrapping<i8>
impl DivAssign<isize> for Wrapping<isize>
impl DivAssign<u128> for Wrapping<u128>
impl DivAssign<u16> for Wrapping<u16>
impl DivAssign<u32> for Wrapping<u32>
impl DivAssign<u64> for Wrapping<u64>
impl DivAssign<u8> for Wrapping<u8>
impl DivAssign<usize> for Wrapping<usize>
impl DivAssign for Wrapping<i128>
impl DivAssign for Wrapping<i16>
impl DivAssign for Wrapping<i32>
impl DivAssign for Wrapping<i64>
impl DivAssign for Wrapping<i8>
impl DivAssign for Wrapping<isize>
impl DivAssign for Wrapping<u128>
impl DivAssign for Wrapping<u16>
impl DivAssign for Wrapping<u32>
impl DivAssign for Wrapping<u64>
impl DivAssign for Wrapping<u8>
impl DivAssign for Wrapping<usize>
impl<T> Hash for Wrapping<T>where
T: Hash,fn hash<__H>(&self, state: &mut __H)where
__H: Hasher,fn hash_slice<H>(data: &[Self], state: &mut H)where
H: Hasher,
Self: Sized,impl<T> LowerHex for Wrapping<T>where
T: LowerHex,fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>
impl Mul<&Wrapping<i128>> for &Wrapping<i128>
type Output = <Wrapping<i128> as Mul>::Output
* operator.fn mul(self, other: &Wrapping<i128>) -> <Wrapping<i128> as Mul>::Output
* operation. Read more
impl Mul<&Wrapping<i128>> for Wrapping<i128>
type Output = <Wrapping<i128> as Mul>::Output
* operator.fn mul(self, other: &Wrapping<i128>) -> <Wrapping<i128> as Mul>::Output
* operation. Read more
impl Mul<&Wrapping<i16>> for &Wrapping<i16>
type Output = <Wrapping<i16> as Mul>::Output
* operator.fn mul(self, other: &Wrapping<i16>) -> <Wrapping<i16> as Mul>::Output
* operation. Read more
impl Mul<&Wrapping<i16>> for Wrapping<i16>
type Output = <Wrapping<i16> as Mul>::Output
* operator.fn mul(self, other: &Wrapping<i16>) -> <Wrapping<i16> as Mul>::Output
* operation. Read more
impl Mul<&Wrapping<i32>> for &Wrapping<i32>
type Output = <Wrapping<i32> as Mul>::Output
* operator.fn mul(self, other: &Wrapping<i32>) -> <Wrapping<i32> as Mul>::Output
* operation. Read more
impl Mul<&Wrapping<i32>> for Wrapping<i32>
type Output = <Wrapping<i32> as Mul>::Output
* operator.fn mul(self, other: &Wrapping<i32>) -> <Wrapping<i32> as Mul>::Output
* operation. Read more
impl Mul<&Wrapping<i64>> for &Wrapping<i64>
type Output = <Wrapping<i64> as Mul>::Output
* operator.fn mul(self, other: &Wrapping<i64>) -> <Wrapping<i64> as Mul>::Output
* operation. Read more
impl Mul<&Wrapping<i64>> for Wrapping<i64>
type Output = <Wrapping<i64> as Mul>::Output
* operator.fn mul(self, other: &Wrapping<i64>) -> <Wrapping<i64> as Mul>::Output
* operation. Read more
impl Mul<&Wrapping<i8>> for &Wrapping<i8>
type Output = <Wrapping<i8> as Mul>::Output
* operator.fn mul(self, other: &Wrapping<i8>) -> <Wrapping<i8> as Mul>::Output
* operation. Read more
impl Mul<&Wrapping<i8>> for Wrapping<i8>
type Output = <Wrapping<i8> as Mul>::Output
* operator.fn mul(self, other: &Wrapping<i8>) -> <Wrapping<i8> as Mul>::Output
* operation. Read more
impl Mul<&Wrapping<isize>> for &Wrapping<isize>
type Output = <Wrapping<isize> as Mul>::Output
* operator.fn mul(self, other: &Wrapping<isize>) -> <Wrapping<isize> as Mul>::Output
* operation. Read more
impl Mul<&Wrapping<isize>> for Wrapping<isize>
type Output = <Wrapping<isize> as Mul>::Output
* operator.fn mul(self, other: &Wrapping<isize>) -> <Wrapping<isize> as Mul>::Output
* operation. Read more
impl Mul<&Wrapping<u128>> for &Wrapping<u128>
type Output = <Wrapping<u128> as Mul>::Output
* operator.fn mul(self, other: &Wrapping<u128>) -> <Wrapping<u128> as Mul>::Output
* operation. Read more
impl Mul<&Wrapping<u128>> for Wrapping<u128>
type Output = <Wrapping<u128> as Mul>::Output
* operator.fn mul(self, other: &Wrapping<u128>) -> <Wrapping<u128> as Mul>::Output
* operation. Read more
impl Mul<&Wrapping<u16>> for &Wrapping<u16>
type Output = <Wrapping<u16> as Mul>::Output
* operator.fn mul(self, other: &Wrapping<u16>) -> <Wrapping<u16> as Mul>::Output
* operation. Read more
impl Mul<&Wrapping<u16>> for Wrapping<u16>
type Output = <Wrapping<u16> as Mul>::Output
* operator.fn mul(self, other: &Wrapping<u16>) -> <Wrapping<u16> as Mul>::Output
* operation. Read more
impl Mul<&Wrapping<u32>> for &Wrapping<u32>
type Output = <Wrapping<u32> as Mul>::Output
* operator.fn mul(self, other: &Wrapping<u32>) -> <Wrapping<u32> as Mul>::Output
* operation. Read more
impl Mul<&Wrapping<u32>> for Wrapping<u32>
type Output = <Wrapping<u32> as Mul>::Output
* operator.fn mul(self, other: &Wrapping<u32>) -> <Wrapping<u32> as Mul>::Output
* operation. Read more
impl Mul<&Wrapping<u64>> for &Wrapping<u64>
type Output = <Wrapping<u64> as Mul>::Output
* operator.fn mul(self, other: &Wrapping<u64>) -> <Wrapping<u64> as Mul>::Output
* operation. Read more
impl Mul<&Wrapping<u64>> for Wrapping<u64>
type Output = <Wrapping<u64> as Mul>::Output
* operator.fn mul(self, other: &Wrapping<u64>) -> <Wrapping<u64> as Mul>::Output
* operation. Read more
impl Mul<&Wrapping<u8>> for &Wrapping<u8>
type Output = <Wrapping<u8> as Mul>::Output
* operator.fn mul(self, other: &Wrapping<u8>) -> <Wrapping<u8> as Mul>::Output
* operation. Read more
impl Mul<&Wrapping<u8>> for Wrapping<u8>
type Output = <Wrapping<u8> as Mul>::Output
* operator.fn mul(self, other: &Wrapping<u8>) -> <Wrapping<u8> as Mul>::Output
* operation. Read more
impl Mul<&Wrapping<usize>> for &Wrapping<usize>
type Output = <Wrapping<usize> as Mul>::Output
* operator.fn mul(self, other: &Wrapping<usize>) -> <Wrapping<usize> as Mul>::Output
* operation. Read more
impl Mul<&Wrapping<usize>> for Wrapping<usize>
type Output = <Wrapping<usize> as Mul>::Output
* operator.fn mul(self, other: &Wrapping<usize>) -> <Wrapping<usize> as Mul>::Output
* operation. Read more
impl Mul<Wrapping<i128>> for &Wrapping<i128>
type Output = <Wrapping<i128> as Mul>::Output
* operator.fn mul(self, other: Wrapping<i128>) -> <Wrapping<i128> as Mul>::Output
* operation. Read more
impl Mul<Wrapping<i16>> for &Wrapping<i16>
type Output = <Wrapping<i16> as Mul>::Output
* operator.fn mul(self, other: Wrapping<i16>) -> <Wrapping<i16> as Mul>::Output
* operation. Read more
impl Mul<Wrapping<i32>> for &Wrapping<i32>
type Output = <Wrapping<i32> as Mul>::Output
* operator.fn mul(self, other: Wrapping<i32>) -> <Wrapping<i32> as Mul>::Output
* operation. Read more
impl Mul<Wrapping<i64>> for &Wrapping<i64>
type Output = <Wrapping<i64> as Mul>::Output
* operator.fn mul(self, other: Wrapping<i64>) -> <Wrapping<i64> as Mul>::Output
* operation. Read more
impl Mul<Wrapping<i8>> for &Wrapping<i8>
type Output = <Wrapping<i8> as Mul>::Output
* operator.fn mul(self, other: Wrapping<i8>) -> <Wrapping<i8> as Mul>::Output
* operation. Read more
impl Mul<Wrapping<isize>> for &Wrapping<isize>
type Output = <Wrapping<isize> as Mul>::Output
* operator.fn mul(self, other: Wrapping<isize>) -> <Wrapping<isize> as Mul>::Output
* operation. Read more
impl Mul<Wrapping<u128>> for &Wrapping<u128>
type Output = <Wrapping<u128> as Mul>::Output
* operator.fn mul(self, other: Wrapping<u128>) -> <Wrapping<u128> as Mul>::Output
* operation. Read more
impl Mul<Wrapping<u16>> for &Wrapping<u16>
type Output = <Wrapping<u16> as Mul>::Output
* operator.fn mul(self, other: Wrapping<u16>) -> <Wrapping<u16> as Mul>::Output
* operation. Read more
impl Mul<Wrapping<u32>> for &Wrapping<u32>
type Output = <Wrapping<u32> as Mul>::Output
* operator.fn mul(self, other: Wrapping<u32>) -> <Wrapping<u32> as Mul>::Output
* operation. Read more
impl Mul<Wrapping<u64>> for &Wrapping<u64>
type Output = <Wrapping<u64> as Mul>::Output
* operator.fn mul(self, other: Wrapping<u64>) -> <Wrapping<u64> as Mul>::Output
* operation. Read more
impl Mul<Wrapping<u8>> for &Wrapping<u8>
type Output = <Wrapping<u8> as Mul>::Output
* operator.fn mul(self, other: Wrapping<u8>) -> <Wrapping<u8> as Mul>::Output
* operation. Read more
impl Mul<Wrapping<usize>> for &Wrapping<usize>
type Output = <Wrapping<usize> as Mul>::Output
* operator.fn mul(self, other: Wrapping<usize>) -> <Wrapping<usize> as Mul>::Output
* operation. Read more
impl Mul for Wrapping<i128>
type Output = Wrapping<i128>
* operator.fn mul(self, other: Wrapping<i128>) -> Wrapping<i128>
* operation. Read more
impl Mul for Wrapping<i16>
type Output = Wrapping<i16>
* operator.fn mul(self, other: Wrapping<i16>) -> Wrapping<i16>
* operation. Read more
impl Mul for Wrapping<i32>
type Output = Wrapping<i32>
* operator.fn mul(self, other: Wrapping<i32>) -> Wrapping<i32>
* operation. Read more
impl Mul for Wrapping<i64>
type Output = Wrapping<i64>
* operator.fn mul(self, other: Wrapping<i64>) -> Wrapping<i64>
* operation. Read more
impl Mul for Wrapping<i8>
type Output = Wrapping<i8>
* operator.fn mul(self, other: Wrapping<i8>) -> Wrapping<i8>
* operation. Read more
impl Mul for Wrapping<isize>
type Output = Wrapping<isize>
* operator.fn mul(self, other: Wrapping<isize>) -> Wrapping<isize>
* operation. Read more
impl Mul for Wrapping<u128>
type Output = Wrapping<u128>
* operator.fn mul(self, other: Wrapping<u128>) -> Wrapping<u128>
* operation. Read more
impl Mul for Wrapping<u16>
type Output = Wrapping<u16>
* operator.fn mul(self, other: Wrapping<u16>) -> Wrapping<u16>
* operation. Read more
impl Mul for Wrapping<u32>
type Output = Wrapping<u32>
* operator.fn mul(self, other: Wrapping<u32>) -> Wrapping<u32>
* operation. Read more
impl Mul for Wrapping<u64>
type Output = Wrapping<u64>
* operator.fn mul(self, other: Wrapping<u64>) -> Wrapping<u64>
* operation. Read more
impl Mul for Wrapping<u8>
type Output = Wrapping<u8>
* operator.fn mul(self, other: Wrapping<u8>) -> Wrapping<u8>
* operation. Read more
impl Mul for Wrapping<usize>
type Output = Wrapping<usize>
* operator.fn mul(self, other: Wrapping<usize>) -> Wrapping<usize>
* operation. Read more
impl MulAssign<&Wrapping<i128>> for Wrapping<i128>
impl MulAssign<&Wrapping<i16>> for Wrapping<i16>
impl MulAssign<&Wrapping<i32>> for Wrapping<i32>
impl MulAssign<&Wrapping<i64>> for Wrapping<i64>
impl MulAssign<&Wrapping<i8>> for Wrapping<i8>
impl MulAssign<&Wrapping<isize>> for Wrapping<isize>
impl MulAssign<&Wrapping<u128>> for Wrapping<u128>
impl MulAssign<&Wrapping<u16>> for Wrapping<u16>
impl MulAssign<&Wrapping<u32>> for Wrapping<u32>
impl MulAssign<&Wrapping<u64>> for Wrapping<u64>
impl MulAssign<&Wrapping<u8>> for Wrapping<u8>
impl MulAssign<&Wrapping<usize>> for Wrapping<usize>
impl MulAssign<&i128> for Wrapping<i128>
impl MulAssign<&i16> for Wrapping<i16>
impl MulAssign<&i32> for Wrapping<i32>
impl MulAssign<&i64> for Wrapping<i64>
impl MulAssign<&i8> for Wrapping<i8>
impl MulAssign<&isize> for Wrapping<isize>
impl MulAssign<&u128> for Wrapping<u128>
impl MulAssign<&u16> for Wrapping<u16>
impl MulAssign<&u32> for Wrapping<u32>
impl MulAssign<&u64> for Wrapping<u64>
impl MulAssign<&u8> for Wrapping<u8>
impl MulAssign<&usize> for Wrapping<usize>
impl MulAssign<i128> for Wrapping<i128>
impl MulAssign<i16> for Wrapping<i16>
impl MulAssign<i32> for Wrapping<i32>
impl MulAssign<i64> for Wrapping<i64>
impl MulAssign<i8> for Wrapping<i8>
impl MulAssign<isize> for Wrapping<isize>
impl MulAssign<u128> for Wrapping<u128>
impl MulAssign<u16> for Wrapping<u16>
impl MulAssign<u32> for Wrapping<u32>
impl MulAssign<u64> for Wrapping<u64>
impl MulAssign<u8> for Wrapping<u8>
impl MulAssign<usize> for Wrapping<usize>
impl MulAssign for Wrapping<i128>
impl MulAssign for Wrapping<i16>
impl MulAssign for Wrapping<i32>
impl MulAssign for Wrapping<i64>
impl MulAssign for Wrapping<i8>
impl MulAssign for Wrapping<isize>
impl MulAssign for Wrapping<u128>
impl MulAssign for Wrapping<u16>
impl MulAssign for Wrapping<u32>
impl MulAssign for Wrapping<u64>
impl MulAssign for Wrapping<u8>
impl MulAssign for Wrapping<usize>
impl Neg for &Wrapping<i128>
type Output = <Wrapping<i128> as Neg>::Output
- operator.fn neg(self) -> <Wrapping<i128> as Neg>::Output
- operation. Read more
impl Neg for &Wrapping<i16>
type Output = <Wrapping<i16> as Neg>::Output
- operator.fn neg(self) -> <Wrapping<i16> as Neg>::Output
- operation. Read more
impl Neg for &Wrapping<i32>
type Output = <Wrapping<i32> as Neg>::Output
- operator.fn neg(self) -> <Wrapping<i32> as Neg>::Output
- operation. Read more
impl Neg for &Wrapping<i64>
type Output = <Wrapping<i64> as Neg>::Output
- operator.fn neg(self) -> <Wrapping<i64> as Neg>::Output
- operation. Read more
impl Neg for &Wrapping<i8>
type Output = <Wrapping<i8> as Neg>::Output
- operator.fn neg(self) -> <Wrapping<i8> as Neg>::Output
- operation. Read more
impl Neg for &Wrapping<isize>
type Output = <Wrapping<isize> as Neg>::Output
- operator.fn neg(self) -> <Wrapping<isize> as Neg>::Output
- operation. Read more
impl Neg for &Wrapping<u128>
type Output = <Wrapping<u128> as Neg>::Output
- operator.fn neg(self) -> <Wrapping<u128> as Neg>::Output
- operation. Read more
impl Neg for &Wrapping<u16>
type Output = <Wrapping<u16> as Neg>::Output
- operator.fn neg(self) -> <Wrapping<u16> as Neg>::Output
- operation. Read more
impl Neg for &Wrapping<u32>
type Output = <Wrapping<u32> as Neg>::Output
- operator.fn neg(self) -> <Wrapping<u32> as Neg>::Output
- operation. Read more
impl Neg for &Wrapping<u64>
type Output = <Wrapping<u64> as Neg>::Output
- operator.fn neg(self) -> <Wrapping<u64> as Neg>::Output
- operation. Read more
impl Neg for &Wrapping<u8>
type Output = <Wrapping<u8> as Neg>::Output
- operator.fn neg(self) -> <Wrapping<u8> as Neg>::Output
- operation. Read more
impl Neg for &Wrapping<usize>
type Output = <Wrapping<usize> as Neg>::Output
- operator.fn neg(self) -> <Wrapping<usize> as Neg>::Output
- operation. Read more
impl Neg for Wrapping<i128>
type Output = Wrapping<i128>
- operator.fn neg(self) -> Wrapping<i128>
- operation. Read more
impl Neg for Wrapping<i16>
type Output = Wrapping<i16>
- operator.fn neg(self) -> Wrapping<i16>
- operation. Read more
impl Neg for Wrapping<i32>
type Output = Wrapping<i32>
- operator.fn neg(self) -> Wrapping<i32>
- operation. Read more
impl Neg for Wrapping<i64>
type Output = Wrapping<i64>
- operator.fn neg(self) -> Wrapping<i64>
- operation. Read more
impl Neg for Wrapping<i8>
type Output = Wrapping<i8>
- operator.fn neg(self) -> Wrapping<i8>
- operation. Read more
impl Neg for Wrapping<isize>
type Output = Wrapping<isize>
- operator.fn neg(self) -> Wrapping<isize>
- operation. Read more
impl Neg for Wrapping<u128>
type Output = Wrapping<u128>
- operator.fn neg(self) -> Wrapping<u128>
- operation. Read more
impl Neg for Wrapping<u16>
type Output = Wrapping<u16>
- operator.fn neg(self) -> Wrapping<u16>
- operation. Read more
impl Neg for Wrapping<u32>
type Output = Wrapping<u32>
- operator.fn neg(self) -> Wrapping<u32>
- operation. Read more
impl Neg for Wrapping<u64>
type Output = Wrapping<u64>
- operator.fn neg(self) -> Wrapping<u64>
- operation. Read more
impl Neg for Wrapping<u8>
type Output = Wrapping<u8>
- operator.fn neg(self) -> Wrapping<u8>
- operation. Read more
impl Neg for Wrapping<usize>
type Output = Wrapping<usize>
- operator.fn neg(self) -> Wrapping<usize>
- operation. Read more
impl Not for &Wrapping<i128>
type Output = <Wrapping<i128> as Not>::Output
! operator.fn not(self) -> <Wrapping<i128> as Not>::Output
! operation. Read more
impl Not for &Wrapping<i16>
type Output = <Wrapping<i16> as Not>::Output
! operator.fn not(self) -> <Wrapping<i16> as Not>::Output
! operation. Read more
impl Not for &Wrapping<i32>
type Output = <Wrapping<i32> as Not>::Output
! operator.fn not(self) -> <Wrapping<i32> as Not>::Output
! operation. Read more
impl Not for &Wrapping<i64>
type Output = <Wrapping<i64> as Not>::Output
! operator.fn not(self) -> <Wrapping<i64> as Not>::Output
! operation. Read more
impl Not for &Wrapping<i8>
type Output = <Wrapping<i8> as Not>::Output
! operator.fn not(self) -> <Wrapping<i8> as Not>::Output
! operation. Read more
impl Not for &Wrapping<isize>
type Output = <Wrapping<isize> as Not>::Output
! operator.fn not(self) -> <Wrapping<isize> as Not>::Output
! operation. Read more
impl Not for &Wrapping<u128>
type Output = <Wrapping<u128> as Not>::Output
! operator.fn not(self) -> <Wrapping<u128> as Not>::Output
! operation. Read more
impl Not for &Wrapping<u16>
type Output = <Wrapping<u16> as Not>::Output
! operator.fn not(self) -> <Wrapping<u16> as Not>::Output
! operation. Read more
impl Not for &Wrapping<u32>
type Output = <Wrapping<u32> as Not>::Output
! operator.fn not(self) -> <Wrapping<u32> as Not>::Output
! operation. Read more
impl Not for &Wrapping<u64>
type Output = <Wrapping<u64> as Not>::Output
! operator.fn not(self) -> <Wrapping<u64> as Not>::Output
! operation. Read more
impl Not for &Wrapping<u8>
type Output = <Wrapping<u8> as Not>::Output
! operator.fn not(self) -> <Wrapping<u8> as Not>::Output
! operation. Read more
impl Not for &Wrapping<usize>
type Output = <Wrapping<usize> as Not>::Output
! operator.fn not(self) -> <Wrapping<usize> as Not>::Output
! operation. Read more
impl Not for Wrapping<i128>
type Output = Wrapping<i128>
! operator.fn not(self) -> Wrapping<i128>
! operation. Read more
impl Not for Wrapping<i16>
type Output = Wrapping<i16>
! operator.fn not(self) -> Wrapping<i16>
! operation. Read more
impl Not for Wrapping<i32>
type Output = Wrapping<i32>
! operator.fn not(self) -> Wrapping<i32>
! operation. Read more
impl Not for Wrapping<i64>
type Output = Wrapping<i64>
! operator.fn not(self) -> Wrapping<i64>
! operation. Read more
impl Not for Wrapping<i8>
type Output = Wrapping<i8>
! operator.fn not(self) -> Wrapping<i8>
! operation. Read more
impl Not for Wrapping<isize>
type Output = Wrapping<isize>
! operator.fn not(self) -> Wrapping<isize>
! operation. Read more
impl Not for Wrapping<u128>
type Output = Wrapping<u128>
! operator.fn not(self) -> Wrapping<u128>
! operation. Read more
impl Not for Wrapping<u16>
type Output = Wrapping<u16>
! operator.fn not(self) -> Wrapping<u16>
! operation. Read more
impl Not for Wrapping<u32>
type Output = Wrapping<u32>
! operator.fn not(self) -> Wrapping<u32>
! operation. Read more
impl Not for Wrapping<u64>
type Output = Wrapping<u64>
! operator.fn not(self) -> Wrapping<u64>
! operation. Read more
impl Not for Wrapping<u8>
type Output = Wrapping<u8>
! operator.fn not(self) -> Wrapping<u8>
! operation. Read more
impl Not for Wrapping<usize>
type Output = Wrapping<usize>
! operator.fn not(self) -> Wrapping<usize>
! operation. Read more
impl<T> Octal for Wrapping<T>where
T: Octal,fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>
impl<T> Ord for Wrapping<T>where
T: Ord,fn cmp(&self, other: &Wrapping<T>) -> Ordering
fn max(self, other: Self) -> Selfwhere
Self: Sized,fn min(self, other: Self) -> Selfwhere
Self: Sized,fn clamp(self, min: Self, max: Self) -> Selfwhere
Self: Sized,impl<T> PartialEq for Wrapping<T>where
T: PartialEq,fn eq(&self, other: &Wrapping<T>) -> bool
self and other values to be equal, and is used by ==.fn ne(&self, other: &Rhs) -> bool
!=. The default implementation is almost always sufficient, and should not be overridden without very good reason.impl<T> PartialOrd for Wrapping<T>where
T: PartialOrd,fn partial_cmp(&self, other: &Wrapping<T>) -> Option<Ordering>
fn lt(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
fn gt(&self, other: &Rhs) -> bool
fn ge(&self, other: &Rhs) -> bool
impl<'a> Product<&'a Wrapping<i128>> for Wrapping<i128>
fn product<I>(iter: I) -> Wrapping<i128>where
I: Iterator<Item = &'a Wrapping<i128>>,Self from the elements by multiplying the items.impl<'a> Product<&'a Wrapping<i16>> for Wrapping<i16>
fn product<I>(iter: I) -> Wrapping<i16>where
I: Iterator<Item = &'a Wrapping<i16>>,Self from the elements by multiplying the items.impl<'a> Product<&'a Wrapping<i32>> for Wrapping<i32>
fn product<I>(iter: I) -> Wrapping<i32>where
I: Iterator<Item = &'a Wrapping<i32>>,Self from the elements by multiplying the items.impl<'a> Product<&'a Wrapping<i64>> for Wrapping<i64>
fn product<I>(iter: I) -> Wrapping<i64>where
I: Iterator<Item = &'a Wrapping<i64>>,Self from the elements by multiplying the items.impl<'a> Product<&'a Wrapping<i8>> for Wrapping<i8>
fn product<I>(iter: I) -> Wrapping<i8>where
I: Iterator<Item = &'a Wrapping<i8>>,Self from the elements by multiplying the items.impl<'a> Product<&'a Wrapping<isize>> for Wrapping<isize>
fn product<I>(iter: I) -> Wrapping<isize>where
I: Iterator<Item = &'a Wrapping<isize>>,Self from the elements by multiplying the items.impl<'a> Product<&'a Wrapping<u128>> for Wrapping<u128>
fn product<I>(iter: I) -> Wrapping<u128>where
I: Iterator<Item = &'a Wrapping<u128>>,Self from the elements by multiplying the items.impl<'a> Product<&'a Wrapping<u16>> for Wrapping<u16>
fn product<I>(iter: I) -> Wrapping<u16>where
I: Iterator<Item = &'a Wrapping<u16>>,Self from the elements by multiplying the items.impl<'a> Product<&'a Wrapping<u32>> for Wrapping<u32>
fn product<I>(iter: I) -> Wrapping<u32>where
I: Iterator<Item = &'a Wrapping<u32>>,Self from the elements by multiplying the items.impl<'a> Product<&'a Wrapping<u64>> for Wrapping<u64>
fn product<I>(iter: I) -> Wrapping<u64>where
I: Iterator<Item = &'a Wrapping<u64>>,Self from the elements by multiplying the items.impl<'a> Product<&'a Wrapping<u8>> for Wrapping<u8>
fn product<I>(iter: I) -> Wrapping<u8>where
I: Iterator<Item = &'a Wrapping<u8>>,Self from the elements by multiplying the items.impl<'a> Product<&'a Wrapping<usize>> for Wrapping<usize>
fn product<I>(iter: I) -> Wrapping<usize>where
I: Iterator<Item = &'a Wrapping<usize>>,Self from the elements by multiplying the items.impl Product for Wrapping<i128>
fn product<I>(iter: I) -> Wrapping<i128>where
I: Iterator<Item = Wrapping<i128>>,Self from the elements by multiplying the items.impl Product for Wrapping<i16>
fn product<I>(iter: I) -> Wrapping<i16>where
I: Iterator<Item = Wrapping<i16>>,Self from the elements by multiplying the items.impl Product for Wrapping<i32>
fn product<I>(iter: I) -> Wrapping<i32>where
I: Iterator<Item = Wrapping<i32>>,Self from the elements by multiplying the items.impl Product for Wrapping<i64>
fn product<I>(iter: I) -> Wrapping<i64>where
I: Iterator<Item = Wrapping<i64>>,Self from the elements by multiplying the items.impl Product for Wrapping<i8>
fn product<I>(iter: I) -> Wrapping<i8>where
I: Iterator<Item = Wrapping<i8>>,Self from the elements by multiplying the items.impl Product for Wrapping<isize>
fn product<I>(iter: I) -> Wrapping<isize>where
I: Iterator<Item = Wrapping<isize>>,Self from the elements by multiplying the items.impl Product for Wrapping<u128>
fn product<I>(iter: I) -> Wrapping<u128>where
I: Iterator<Item = Wrapping<u128>>,Self from the elements by multiplying the items.impl Product for Wrapping<u16>
fn product<I>(iter: I) -> Wrapping<u16>where
I: Iterator<Item = Wrapping<u16>>,Self from the elements by multiplying the items.impl Product for Wrapping<u32>
fn product<I>(iter: I) -> Wrapping<u32>where
I: Iterator<Item = Wrapping<u32>>,Self from the elements by multiplying the items.impl Product for Wrapping<u64>
fn product<I>(iter: I) -> Wrapping<u64>where
I: Iterator<Item = Wrapping<u64>>,Self from the elements by multiplying the items.impl Product for Wrapping<u8>
fn product<I>(iter: I) -> Wrapping<u8>where
I: Iterator<Item = Wrapping<u8>>,Self from the elements by multiplying the items.impl Product for Wrapping<usize>
fn product<I>(iter: I) -> Wrapping<usize>where
I: Iterator<Item = Wrapping<usize>>,Self from the elements by multiplying the items.impl Rem<&Wrapping<i128>> for &Wrapping<i128>
type Output = <Wrapping<i128> as Rem>::Output
% operator.fn rem(self, other: &Wrapping<i128>) -> <Wrapping<i128> as Rem>::Output
% operation. Read more
impl Rem<&Wrapping<i128>> for Wrapping<i128>
type Output = <Wrapping<i128> as Rem>::Output
% operator.fn rem(self, other: &Wrapping<i128>) -> <Wrapping<i128> as Rem>::Output
% operation. Read more
impl Rem<&Wrapping<i16>> for &Wrapping<i16>
type Output = <Wrapping<i16> as Rem>::Output
% operator.fn rem(self, other: &Wrapping<i16>) -> <Wrapping<i16> as Rem>::Output
% operation. Read more
impl Rem<&Wrapping<i16>> for Wrapping<i16>
type Output = <Wrapping<i16> as Rem>::Output
% operator.fn rem(self, other: &Wrapping<i16>) -> <Wrapping<i16> as Rem>::Output
% operation. Read more
impl Rem<&Wrapping<i32>> for &Wrapping<i32>
type Output = <Wrapping<i32> as Rem>::Output
% operator.fn rem(self, other: &Wrapping<i32>) -> <Wrapping<i32> as Rem>::Output
% operation. Read more
impl Rem<&Wrapping<i32>> for Wrapping<i32>
type Output = <Wrapping<i32> as Rem>::Output
% operator.fn rem(self, other: &Wrapping<i32>) -> <Wrapping<i32> as Rem>::Output
% operation. Read more
impl Rem<&Wrapping<i64>> for &Wrapping<i64>
type Output = <Wrapping<i64> as Rem>::Output
% operator.fn rem(self, other: &Wrapping<i64>) -> <Wrapping<i64> as Rem>::Output
% operation. Read more
impl Rem<&Wrapping<i64>> for Wrapping<i64>
type Output = <Wrapping<i64> as Rem>::Output
% operator.fn rem(self, other: &Wrapping<i64>) -> <Wrapping<i64> as Rem>::Output
% operation. Read more
impl Rem<&Wrapping<i8>> for &Wrapping<i8>
type Output = <Wrapping<i8> as Rem>::Output
% operator.fn rem(self, other: &Wrapping<i8>) -> <Wrapping<i8> as Rem>::Output
% operation. Read more
impl Rem<&Wrapping<i8>> for Wrapping<i8>
type Output = <Wrapping<i8> as Rem>::Output
% operator.fn rem(self, other: &Wrapping<i8>) -> <Wrapping<i8> as Rem>::Output
% operation. Read more
impl Rem<&Wrapping<isize>> for &Wrapping<isize>
type Output = <Wrapping<isize> as Rem>::Output
% operator.fn rem(self, other: &Wrapping<isize>) -> <Wrapping<isize> as Rem>::Output
% operation. Read more
impl Rem<&Wrapping<isize>> for Wrapping<isize>
type Output = <Wrapping<isize> as Rem>::Output
% operator.fn rem(self, other: &Wrapping<isize>) -> <Wrapping<isize> as Rem>::Output
% operation. Read more
impl Rem<&Wrapping<u128>> for &Wrapping<u128>
type Output = <Wrapping<u128> as Rem>::Output
% operator.fn rem(self, other: &Wrapping<u128>) -> <Wrapping<u128> as Rem>::Output
% operation. Read more
impl Rem<&Wrapping<u128>> for Wrapping<u128>
type Output = <Wrapping<u128> as Rem>::Output
% operator.fn rem(self, other: &Wrapping<u128>) -> <Wrapping<u128> as Rem>::Output
% operation. Read more
impl Rem<&Wrapping<u16>> for &Wrapping<u16>
type Output = <Wrapping<u16> as Rem>::Output
% operator.fn rem(self, other: &Wrapping<u16>) -> <Wrapping<u16> as Rem>::Output
% operation. Read more
impl Rem<&Wrapping<u16>> for Wrapping<u16>
type Output = <Wrapping<u16> as Rem>::Output
% operator.fn rem(self, other: &Wrapping<u16>) -> <Wrapping<u16> as Rem>::Output
% operation. Read more
impl Rem<&Wrapping<u32>> for &Wrapping<u32>
type Output = <Wrapping<u32> as Rem>::Output
% operator.fn rem(self, other: &Wrapping<u32>) -> <Wrapping<u32> as Rem>::Output
% operation. Read more
impl Rem<&Wrapping<u32>> for Wrapping<u32>
type Output = <Wrapping<u32> as Rem>::Output
% operator.fn rem(self, other: &Wrapping<u32>) -> <Wrapping<u32> as Rem>::Output
% operation. Read more
impl Rem<&Wrapping<u64>> for &Wrapping<u64>
type Output = <Wrapping<u64> as Rem>::Output
% operator.fn rem(self, other: &Wrapping<u64>) -> <Wrapping<u64> as Rem>::Output
% operation. Read more
impl Rem<&Wrapping<u64>> for Wrapping<u64>
type Output = <Wrapping<u64> as Rem>::Output
% operator.fn rem(self, other: &Wrapping<u64>) -> <Wrapping<u64> as Rem>::Output
% operation. Read more
impl Rem<&Wrapping<u8>> for &Wrapping<u8>
type Output = <Wrapping<u8> as Rem>::Output
% operator.fn rem(self, other: &Wrapping<u8>) -> <Wrapping<u8> as Rem>::Output
% operation. Read more
impl Rem<&Wrapping<u8>> for Wrapping<u8>
type Output = <Wrapping<u8> as Rem>::Output
% operator.fn rem(self, other: &Wrapping<u8>) -> <Wrapping<u8> as Rem>::Output
% operation. Read more
impl Rem<&Wrapping<usize>> for &Wrapping<usize>
type Output = <Wrapping<usize> as Rem>::Output
% operator.fn rem(self, other: &Wrapping<usize>) -> <Wrapping<usize> as Rem>::Output
% operation. Read more
impl Rem<&Wrapping<usize>> for Wrapping<usize>
type Output = <Wrapping<usize> as Rem>::Output
% operator.fn rem(self, other: &Wrapping<usize>) -> <Wrapping<usize> as Rem>::Output
% operation. Read more
impl Rem<Wrapping<i128>> for &Wrapping<i128>
type Output = <Wrapping<i128> as Rem>::Output
% operator.fn rem(self, other: Wrapping<i128>) -> <Wrapping<i128> as Rem>::Output
% operation. Read more
impl Rem<Wrapping<i16>> for &Wrapping<i16>
type Output = <Wrapping<i16> as Rem>::Output
% operator.fn rem(self, other: Wrapping<i16>) -> <Wrapping<i16> as Rem>::Output
% operation. Read more
impl Rem<Wrapping<i32>> for &Wrapping<i32>
type Output = <Wrapping<i32> as Rem>::Output
% operator.fn rem(self, other: Wrapping<i32>) -> <Wrapping<i32> as Rem>::Output
% operation. Read more
impl Rem<Wrapping<i64>> for &Wrapping<i64>
type Output = <Wrapping<i64> as Rem>::Output
% operator.fn rem(self, other: Wrapping<i64>) -> <Wrapping<i64> as Rem>::Output
% operation. Read more
impl Rem<Wrapping<i8>> for &Wrapping<i8>
type Output = <Wrapping<i8> as Rem>::Output
% operator.fn rem(self, other: Wrapping<i8>) -> <Wrapping<i8> as Rem>::Output
% operation. Read more
impl Rem<Wrapping<isize>> for &Wrapping<isize>
type Output = <Wrapping<isize> as Rem>::Output
% operator.fn rem(self, other: Wrapping<isize>) -> <Wrapping<isize> as Rem>::Output
% operation. Read more
impl Rem<Wrapping<u128>> for &Wrapping<u128>
type Output = <Wrapping<u128> as Rem>::Output
% operator.fn rem(self, other: Wrapping<u128>) -> <Wrapping<u128> as Rem>::Output
% operation. Read more
impl Rem<Wrapping<u16>> for &Wrapping<u16>
type Output = <Wrapping<u16> as Rem>::Output
% operator.fn rem(self, other: Wrapping<u16>) -> <Wrapping<u16> as Rem>::Output
% operation. Read more
impl Rem<Wrapping<u32>> for &Wrapping<u32>
type Output = <Wrapping<u32> as Rem>::Output
% operator.fn rem(self, other: Wrapping<u32>) -> <Wrapping<u32> as Rem>::Output
% operation. Read more
impl Rem<Wrapping<u64>> for &Wrapping<u64>
type Output = <Wrapping<u64> as Rem>::Output
% operator.fn rem(self, other: Wrapping<u64>) -> <Wrapping<u64> as Rem>::Output
% operation. Read more
impl Rem<Wrapping<u8>> for &Wrapping<u8>
type Output = <Wrapping<u8> as Rem>::Output
% operator.fn rem(self, other: Wrapping<u8>) -> <Wrapping<u8> as Rem>::Output
% operation. Read more
impl Rem<Wrapping<usize>> for &Wrapping<usize>
type Output = <Wrapping<usize> as Rem>::Output
% operator.fn rem(self, other: Wrapping<usize>) -> <Wrapping<usize> as Rem>::Output
% operation. Read more
impl Rem for Wrapping<i128>
type Output = Wrapping<i128>
% operator.fn rem(self, other: Wrapping<i128>) -> Wrapping<i128>
% operation. Read more
impl Rem for Wrapping<i16>
type Output = Wrapping<i16>
% operator.fn rem(self, other: Wrapping<i16>) -> Wrapping<i16>
% operation. Read more
impl Rem for Wrapping<i32>
type Output = Wrapping<i32>
% operator.fn rem(self, other: Wrapping<i32>) -> Wrapping<i32>
% operation. Read more
impl Rem for Wrapping<i64>
type Output = Wrapping<i64>
% operator.fn rem(self, other: Wrapping<i64>) -> Wrapping<i64>
% operation. Read more
impl Rem for Wrapping<i8>
type Output = Wrapping<i8>
% operator.fn rem(self, other: Wrapping<i8>) -> Wrapping<i8>
% operation. Read more
impl Rem for Wrapping<isize>
type Output = Wrapping<isize>
% operator.fn rem(self, other: Wrapping<isize>) -> Wrapping<isize>
% operation. Read more
impl Rem for Wrapping<u128>
type Output = Wrapping<u128>
% operator.fn rem(self, other: Wrapping<u128>) -> Wrapping<u128>
% operation. Read more
impl Rem for Wrapping<u16>
type Output = Wrapping<u16>
% operator.fn rem(self, other: Wrapping<u16>) -> Wrapping<u16>
% operation. Read more
impl Rem for Wrapping<u32>
type Output = Wrapping<u32>
% operator.fn rem(self, other: Wrapping<u32>) -> Wrapping<u32>
% operation. Read more
impl Rem for Wrapping<u64>
type Output = Wrapping<u64>
% operator.fn rem(self, other: Wrapping<u64>) -> Wrapping<u64>
% operation. Read more
impl Rem for Wrapping<u8>
type Output = Wrapping<u8>
% operator.fn rem(self, other: Wrapping<u8>) -> Wrapping<u8>
% operation. Read more
impl Rem for Wrapping<usize>
type Output = Wrapping<usize>
% operator.fn rem(self, other: Wrapping<usize>) -> Wrapping<usize>
% operation. Read more
impl RemAssign<&Wrapping<i128>> for Wrapping<i128>
impl RemAssign<&Wrapping<i16>> for Wrapping<i16>
impl RemAssign<&Wrapping<i32>> for Wrapping<i32>
impl RemAssign<&Wrapping<i64>> for Wrapping<i64>
impl RemAssign<&Wrapping<i8>> for Wrapping<i8>
impl RemAssign<&Wrapping<isize>> for Wrapping<isize>
impl RemAssign<&Wrapping<u128>> for Wrapping<u128>
impl RemAssign<&Wrapping<u16>> for Wrapping<u16>
impl RemAssign<&Wrapping<u32>> for Wrapping<u32>
impl RemAssign<&Wrapping<u64>> for Wrapping<u64>
impl RemAssign<&Wrapping<u8>> for Wrapping<u8>
impl RemAssign<&Wrapping<usize>> for Wrapping<usize>
impl RemAssign<&i128> for Wrapping<i128>
impl RemAssign<&i16> for Wrapping<i16>
impl RemAssign<&i32> for Wrapping<i32>
impl RemAssign<&i64> for Wrapping<i64>
impl RemAssign<&i8> for Wrapping<i8>
impl RemAssign<&isize> for Wrapping<isize>
impl RemAssign<&u128> for Wrapping<u128>
impl RemAssign<&u16> for Wrapping<u16>
impl RemAssign<&u32> for Wrapping<u32>
impl RemAssign<&u64> for Wrapping<u64>
impl RemAssign<&u8> for Wrapping<u8>
impl RemAssign<&usize> for Wrapping<usize>
impl RemAssign<i128> for Wrapping<i128>
impl RemAssign<i16> for Wrapping<i16>
impl RemAssign<i32> for Wrapping<i32>
impl RemAssign<i64> for Wrapping<i64>
impl RemAssign<i8> for Wrapping<i8>
impl RemAssign<isize> for Wrapping<isize>
impl RemAssign<u128> for Wrapping<u128>
impl RemAssign<u16> for Wrapping<u16>
impl RemAssign<u32> for Wrapping<u32>
impl RemAssign<u64> for Wrapping<u64>
impl RemAssign<u8> for Wrapping<u8>
impl RemAssign<usize> for Wrapping<usize>
impl RemAssign for Wrapping<i128>
impl RemAssign for Wrapping<i16>
impl RemAssign for Wrapping<i32>
impl RemAssign for Wrapping<i64>
impl RemAssign for Wrapping<i8>
impl RemAssign for Wrapping<isize>
impl RemAssign for Wrapping<u128>
impl RemAssign for Wrapping<u16>
impl RemAssign for Wrapping<u32>
impl RemAssign for Wrapping<u64>
impl RemAssign for Wrapping<u8>
impl RemAssign for Wrapping<usize>
impl Shl<&usize> for &Wrapping<i128>
type Output = <Wrapping<i128> as Shl<usize>>::Output
<< operator.fn shl(self, other: &usize) -> <Wrapping<i128> as Shl<usize>>::Output
<< operation. Read more
impl Shl<&usize> for &Wrapping<i16>
type Output = <Wrapping<i16> as Shl<usize>>::Output
<< operator.fn shl(self, other: &usize) -> <Wrapping<i16> as Shl<usize>>::Output
<< operation. Read more
impl Shl<&usize> for &Wrapping<i32>
type Output = <Wrapping<i32> as Shl<usize>>::Output
<< operator.fn shl(self, other: &usize) -> <Wrapping<i32> as Shl<usize>>::Output
<< operation. Read more
impl Shl<&usize> for &Wrapping<i64>
type Output = <Wrapping<i64> as Shl<usize>>::Output
<< operator.fn shl(self, other: &usize) -> <Wrapping<i64> as Shl<usize>>::Output
<< operation. Read more
impl Shl<&usize> for &Wrapping<i8>
type Output = <Wrapping<i8> as Shl<usize>>::Output
<< operator.fn shl(self, other: &usize) -> <Wrapping<i8> as Shl<usize>>::Output
<< operation. Read more
impl Shl<&usize> for &Wrapping<isize>
type Output = <Wrapping<isize> as Shl<usize>>::Output
<< operator.fn shl(self, other: &usize) -> <Wrapping<isize> as Shl<usize>>::Output
<< operation. Read more
impl Shl<&usize> for &Wrapping<u128>
type Output = <Wrapping<u128> as Shl<usize>>::Output
<< operator.fn shl(self, other: &usize) -> <Wrapping<u128> as Shl<usize>>::Output
<< operation. Read more
impl Shl<&usize> for &Wrapping<u16>
type Output = <Wrapping<u16> as Shl<usize>>::Output
<< operator.fn shl(self, other: &usize) -> <Wrapping<u16> as Shl<usize>>::Output
<< operation. Read more
impl Shl<&usize> for &Wrapping<u32>
type Output = <Wrapping<u32> as Shl<usize>>::Output
<< operator.fn shl(self, other: &usize) -> <Wrapping<u32> as Shl<usize>>::Output
<< operation. Read more
impl Shl<&usize> for &Wrapping<u64>
type Output = <Wrapping<u64> as Shl<usize>>::Output
<< operator.fn shl(self, other: &usize) -> <Wrapping<u64> as Shl<usize>>::Output
<< operation. Read more
impl Shl<&usize> for &Wrapping<u8>
type Output = <Wrapping<u8> as Shl<usize>>::Output
<< operator.fn shl(self, other: &usize) -> <Wrapping<u8> as Shl<usize>>::Output
<< operation. Read more
impl Shl<&usize> for &Wrapping<usize>
type Output = <Wrapping<usize> as Shl<usize>>::Output
<< operator.fn shl(self, other: &usize) -> <Wrapping<usize> as Shl<usize>>::Output
<< operation. Read more
impl Shl<&usize> for Wrapping<i128>
type Output = <Wrapping<i128> as Shl<usize>>::Output
<< operator.fn shl(self, other: &usize) -> <Wrapping<i128> as Shl<usize>>::Output
<< operation. Read more
impl Shl<&usize> for Wrapping<i16>
type Output = <Wrapping<i16> as Shl<usize>>::Output
<< operator.fn shl(self, other: &usize) -> <Wrapping<i16> as Shl<usize>>::Output
<< operation. Read more
impl Shl<&usize> for Wrapping<i32>
type Output = <Wrapping<i32> as Shl<usize>>::Output
<< operator.fn shl(self, other: &usize) -> <Wrapping<i32> as Shl<usize>>::Output
<< operation. Read more
impl Shl<&usize> for Wrapping<i64>
type Output = <Wrapping<i64> as Shl<usize>>::Output
<< operator.fn shl(self, other: &usize) -> <Wrapping<i64> as Shl<usize>>::Output
<< operation. Read more
impl Shl<&usize> for Wrapping<i8>
type Output = <Wrapping<i8> as Shl<usize>>::Output
<< operator.fn shl(self, other: &usize) -> <Wrapping<i8> as Shl<usize>>::Output
<< operation. Read more
impl Shl<&usize> for Wrapping<isize>
type Output = <Wrapping<isize> as Shl<usize>>::Output
<< operator.fn shl(self, other: &usize) -> <Wrapping<isize> as Shl<usize>>::Output
<< operation. Read more
impl Shl<&usize> for Wrapping<u128>
type Output = <Wrapping<u128> as Shl<usize>>::Output
<< operator.fn shl(self, other: &usize) -> <Wrapping<u128> as Shl<usize>>::Output
<< operation. Read more
impl Shl<&usize> for Wrapping<u16>
type Output = <Wrapping<u16> as Shl<usize>>::Output
<< operator.fn shl(self, other: &usize) -> <Wrapping<u16> as Shl<usize>>::Output
<< operation. Read more
impl Shl<&usize> for Wrapping<u32>
type Output = <Wrapping<u32> as Shl<usize>>::Output
<< operator.fn shl(self, other: &usize) -> <Wrapping<u32> as Shl<usize>>::Output
<< operation. Read more
impl Shl<&usize> for Wrapping<u64>
type Output = <Wrapping<u64> as Shl<usize>>::Output
<< operator.fn shl(self, other: &usize) -> <Wrapping<u64> as Shl<usize>>::Output
<< operation. Read more
impl Shl<&usize> for Wrapping<u8>
type Output = <Wrapping<u8> as Shl<usize>>::Output
<< operator.fn shl(self, other: &usize) -> <Wrapping<u8> as Shl<usize>>::Output
<< operation. Read more
impl Shl<&usize> for Wrapping<usize>
type Output = <Wrapping<usize> as Shl<usize>>::Output
<< operator.fn shl(self, other: &usize) -> <Wrapping<usize> as Shl<usize>>::Output
<< operation. Read more
impl Shl<usize> for &Wrapping<i128>
type Output = <Wrapping<i128> as Shl<usize>>::Output
<< operator.fn shl(self, other: usize) -> <Wrapping<i128> as Shl<usize>>::Output
<< operation. Read more
impl Shl<usize> for &Wrapping<i16>
type Output = <Wrapping<i16> as Shl<usize>>::Output
<< operator.fn shl(self, other: usize) -> <Wrapping<i16> as Shl<usize>>::Output
<< operation. Read more
impl Shl<usize> for &Wrapping<i32>
type Output = <Wrapping<i32> as Shl<usize>>::Output
<< operator.fn shl(self, other: usize) -> <Wrapping<i32> as Shl<usize>>::Output
<< operation. Read more
impl Shl<usize> for &Wrapping<i64>
type Output = <Wrapping<i64> as Shl<usize>>::Output
<< operator.fn shl(self, other: usize) -> <Wrapping<i64> as Shl<usize>>::Output
<< operation. Read more
impl Shl<usize> for &Wrapping<i8>
type Output = <Wrapping<i8> as Shl<usize>>::Output
<< operator.fn shl(self, other: usize) -> <Wrapping<i8> as Shl<usize>>::Output
<< operation. Read more
impl Shl<usize> for &Wrapping<isize>
type Output = <Wrapping<isize> as Shl<usize>>::Output
<< operator.fn shl(self, other: usize) -> <Wrapping<isize> as Shl<usize>>::Output
<< operation. Read more
impl Shl<usize> for &Wrapping<u128>
type Output = <Wrapping<u128> as Shl<usize>>::Output
<< operator.fn shl(self, other: usize) -> <Wrapping<u128> as Shl<usize>>::Output
<< operation. Read more
impl Shl<usize> for &Wrapping<u16>
type Output = <Wrapping<u16> as Shl<usize>>::Output
<< operator.fn shl(self, other: usize) -> <Wrapping<u16> as Shl<usize>>::Output
<< operation. Read more
impl Shl<usize> for &Wrapping<u32>
type Output = <Wrapping<u32> as Shl<usize>>::Output
<< operator.fn shl(self, other: usize) -> <Wrapping<u32> as Shl<usize>>::Output
<< operation. Read more
impl Shl<usize> for &Wrapping<u64>
type Output = <Wrapping<u64> as Shl<usize>>::Output
<< operator.fn shl(self, other: usize) -> <Wrapping<u64> as Shl<usize>>::Output
<< operation. Read more
impl Shl<usize> for &Wrapping<u8>
type Output = <Wrapping<u8> as Shl<usize>>::Output
<< operator.fn shl(self, other: usize) -> <Wrapping<u8> as Shl<usize>>::Output
<< operation. Read more
impl Shl<usize> for &Wrapping<usize>
type Output = <Wrapping<usize> as Shl<usize>>::Output
<< operator.fn shl(self, other: usize) -> <Wrapping<usize> as Shl<usize>>::Output
<< operation. Read more
impl Shl<usize> for Wrapping<i128>
type Output = Wrapping<i128>
<< operator.fn shl(self, other: usize) -> Wrapping<i128>
<< operation. Read more
impl Shl<usize> for Wrapping<i16>
type Output = Wrapping<i16>
<< operator.fn shl(self, other: usize) -> Wrapping<i16>
<< operation. Read more
impl Shl<usize> for Wrapping<i32>
type Output = Wrapping<i32>
<< operator.fn shl(self, other: usize) -> Wrapping<i32>
<< operation. Read more
impl Shl<usize> for Wrapping<i64>
type Output = Wrapping<i64>
<< operator.fn shl(self, other: usize) -> Wrapping<i64>
<< operation. Read more
impl Shl<usize> for Wrapping<i8>
type Output = Wrapping<i8>
<< operator.fn shl(self, other: usize) -> Wrapping<i8>
<< operation. Read more
impl Shl<usize> for Wrapping<isize>
type Output = Wrapping<isize>
<< operator.fn shl(self, other: usize) -> Wrapping<isize>
<< operation. Read more
impl Shl<usize> for Wrapping<u128>
type Output = Wrapping<u128>
<< operator.fn shl(self, other: usize) -> Wrapping<u128>
<< operation. Read more
impl Shl<usize> for Wrapping<u16>
type Output = Wrapping<u16>
<< operator.fn shl(self, other: usize) -> Wrapping<u16>
<< operation. Read more
impl Shl<usize> for Wrapping<u32>
type Output = Wrapping<u32>
<< operator.fn shl(self, other: usize) -> Wrapping<u32>
<< operation. Read more
impl Shl<usize> for Wrapping<u64>
type Output = Wrapping<u64>
<< operator.fn shl(self, other: usize) -> Wrapping<u64>
<< operation. Read more
impl Shl<usize> for Wrapping<u8>
type Output = Wrapping<u8>
<< operator.fn shl(self, other: usize) -> Wrapping<u8>
<< operation. Read more
impl Shl<usize> for Wrapping<usize>
type Output = Wrapping<usize>
<< operator.fn shl(self, other: usize) -> Wrapping<usize>
<< operation. Read more
impl ShlAssign<&usize> for Wrapping<i128>
impl ShlAssign<&usize> for Wrapping<i16>
impl ShlAssign<&usize> for Wrapping<i32>
impl ShlAssign<&usize> for Wrapping<i64>
impl ShlAssign<&usize> for Wrapping<i8>
impl ShlAssign<&usize> for Wrapping<isize>
impl ShlAssign<&usize> for Wrapping<u128>
impl ShlAssign<&usize> for Wrapping<u16>
impl ShlAssign<&usize> for Wrapping<u32>
impl ShlAssign<&usize> for Wrapping<u64>
impl ShlAssign<&usize> for Wrapping<u8>
impl ShlAssign<&usize> for Wrapping<usize>
impl ShlAssign<usize> for Wrapping<i128>
impl ShlAssign<usize> for Wrapping<i16>
impl ShlAssign<usize> for Wrapping<i32>
impl ShlAssign<usize> for Wrapping<i64>
impl ShlAssign<usize> for Wrapping<i8>
impl ShlAssign<usize> for Wrapping<isize>
impl ShlAssign<usize> for Wrapping<u128>
impl ShlAssign<usize> for Wrapping<u16>
impl ShlAssign<usize> for Wrapping<u32>
impl ShlAssign<usize> for Wrapping<u64>
impl ShlAssign<usize> for Wrapping<u8>
impl ShlAssign<usize> for Wrapping<usize>
impl Shr<&usize> for &Wrapping<i128>
type Output = <Wrapping<i128> as Shr<usize>>::Output
>> operator.fn shr(self, other: &usize) -> <Wrapping<i128> as Shr<usize>>::Output
>> operation. Read more
impl Shr<&usize> for &Wrapping<i16>
type Output = <Wrapping<i16> as Shr<usize>>::Output
>> operator.fn shr(self, other: &usize) -> <Wrapping<i16> as Shr<usize>>::Output
>> operation. Read more
impl Shr<&usize> for &Wrapping<i32>
type Output = <Wrapping<i32> as Shr<usize>>::Output
>> operator.fn shr(self, other: &usize) -> <Wrapping<i32> as Shr<usize>>::Output
>> operation. Read more
impl Shr<&usize> for &Wrapping<i64>
type Output = <Wrapping<i64> as Shr<usize>>::Output
>> operator.fn shr(self, other: &usize) -> <Wrapping<i64> as Shr<usize>>::Output
>> operation. Read more
impl Shr<&usize> for &Wrapping<i8>
type Output = <Wrapping<i8> as Shr<usize>>::Output
>> operator.fn shr(self, other: &usize) -> <Wrapping<i8> as Shr<usize>>::Output
>> operation. Read more
impl Shr<&usize> for &Wrapping<isize>
type Output = <Wrapping<isize> as Shr<usize>>::Output
>> operator.fn shr(self, other: &usize) -> <Wrapping<isize> as Shr<usize>>::Output
>> operation. Read more
impl Shr<&usize> for &Wrapping<u128>
type Output = <Wrapping<u128> as Shr<usize>>::Output
>> operator.fn shr(self, other: &usize) -> <Wrapping<u128> as Shr<usize>>::Output
>> operation. Read more
impl Shr<&usize> for &Wrapping<u16>
type Output = <Wrapping<u16> as Shr<usize>>::Output
>> operator.fn shr(self, other: &usize) -> <Wrapping<u16> as Shr<usize>>::Output
>> operation. Read more
impl Shr<&usize> for &Wrapping<u32>
type Output = <Wrapping<u32> as Shr<usize>>::Output
>> operator.fn shr(self, other: &usize) -> <Wrapping<u32> as Shr<usize>>::Output
>> operation. Read more
impl Shr<&usize> for &Wrapping<u64>
type Output = <Wrapping<u64> as Shr<usize>>::Output
>> operator.fn shr(self, other: &usize) -> <Wrapping<u64> as Shr<usize>>::Output
>> operation. Read more
impl Shr<&usize> for &Wrapping<u8>
type Output = <Wrapping<u8> as Shr<usize>>::Output
>> operator.fn shr(self, other: &usize) -> <Wrapping<u8> as Shr<usize>>::Output
>> operation. Read more
impl Shr<&usize> for &Wrapping<usize>
type Output = <Wrapping<usize> as Shr<usize>>::Output
>> operator.fn shr(self, other: &usize) -> <Wrapping<usize> as Shr<usize>>::Output
>> operation. Read more
impl Shr<&usize> for Wrapping<i128>
type Output = <Wrapping<i128> as Shr<usize>>::Output
>> operator.fn shr(self, other: &usize) -> <Wrapping<i128> as Shr<usize>>::Output
>> operation. Read more
impl Shr<&usize> for Wrapping<i16>
type Output = <Wrapping<i16> as Shr<usize>>::Output
>> operator.fn shr(self, other: &usize) -> <Wrapping<i16> as Shr<usize>>::Output
>> operation. Read more
impl Shr<&usize> for Wrapping<i32>
type Output = <Wrapping<i32> as Shr<usize>>::Output
>> operator.fn shr(self, other: &usize) -> <Wrapping<i32> as Shr<usize>>::Output
>> operation. Read more
impl Shr<&usize> for Wrapping<i64>
type Output = <Wrapping<i64> as Shr<usize>>::Output
>> operator.fn shr(self, other: &usize) -> <Wrapping<i64> as Shr<usize>>::Output
>> operation. Read more
impl Shr<&usize> for Wrapping<i8>
type Output = <Wrapping<i8> as Shr<usize>>::Output
>> operator.fn shr(self, other: &usize) -> <Wrapping<i8> as Shr<usize>>::Output
>> operation. Read more
impl Shr<&usize> for Wrapping<isize>
type Output = <Wrapping<isize> as Shr<usize>>::Output
>> operator.fn shr(self, other: &usize) -> <Wrapping<isize> as Shr<usize>>::Output
>> operation. Read more
impl Shr<&usize> for Wrapping<u128>
type Output = <Wrapping<u128> as Shr<usize>>::Output
>> operator.fn shr(self, other: &usize) -> <Wrapping<u128> as Shr<usize>>::Output
>> operation. Read more
impl Shr<&usize> for Wrapping<u16>
type Output = <Wrapping<u16> as Shr<usize>>::Output
>> operator.fn shr(self, other: &usize) -> <Wrapping<u16> as Shr<usize>>::Output
>> operation. Read more
impl Shr<&usize> for Wrapping<u32>
type Output = <Wrapping<u32> as Shr<usize>>::Output
>> operator.fn shr(self, other: &usize) -> <Wrapping<u32> as Shr<usize>>::Output
>> operation. Read more
impl Shr<&usize> for Wrapping<u64>
type Output = <Wrapping<u64> as Shr<usize>>::Output
>> operator.fn shr(self, other: &usize) -> <Wrapping<u64> as Shr<usize>>::Output
>> operation. Read more
impl Shr<&usize> for Wrapping<u8>
type Output = <Wrapping<u8> as Shr<usize>>::Output
>> operator.fn shr(self, other: &usize) -> <Wrapping<u8> as Shr<usize>>::Output
>> operation. Read more
impl Shr<&usize> for Wrapping<usize>
type Output = <Wrapping<usize> as Shr<usize>>::Output
>> operator.fn shr(self, other: &usize) -> <Wrapping<usize> as Shr<usize>>::Output
>> operation. Read more
impl Shr<usize> for &Wrapping<i128>
type Output = <Wrapping<i128> as Shr<usize>>::Output
>> operator.fn shr(self, other: usize) -> <Wrapping<i128> as Shr<usize>>::Output
>> operation. Read more
impl Shr<usize> for &Wrapping<i16>
type Output = <Wrapping<i16> as Shr<usize>>::Output
>> operator.fn shr(self, other: usize) -> <Wrapping<i16> as Shr<usize>>::Output
>> operation. Read more
impl Shr<usize> for &Wrapping<i32>
type Output = <Wrapping<i32> as Shr<usize>>::Output
>> operator.fn shr(self, other: usize) -> <Wrapping<i32> as Shr<usize>>::Output
>> operation. Read more
impl Shr<usize> for &Wrapping<i64>
type Output = <Wrapping<i64> as Shr<usize>>::Output
>> operator.fn shr(self, other: usize) -> <Wrapping<i64> as Shr<usize>>::Output
>> operation. Read more
impl Shr<usize> for &Wrapping<i8>
type Output = <Wrapping<i8> as Shr<usize>>::Output
>> operator.fn shr(self, other: usize) -> <Wrapping<i8> as Shr<usize>>::Output
>> operation. Read more
impl Shr<usize> for &Wrapping<isize>
type Output = <Wrapping<isize> as Shr<usize>>::Output
>> operator.fn shr(self, other: usize) -> <Wrapping<isize> as Shr<usize>>::Output
>> operation. Read more
impl Shr<usize> for &Wrapping<u128>
type Output = <Wrapping<u128> as Shr<usize>>::Output
>> operator.fn shr(self, other: usize) -> <Wrapping<u128> as Shr<usize>>::Output
>> operation. Read more
impl Shr<usize> for &Wrapping<u16>
type Output = <Wrapping<u16> as Shr<usize>>::Output
>> operator.fn shr(self, other: usize) -> <Wrapping<u16> as Shr<usize>>::Output
>> operation. Read more
impl Shr<usize> for &Wrapping<u32>
type Output = <Wrapping<u32> as Shr<usize>>::Output
>> operator.fn shr(self, other: usize) -> <Wrapping<u32> as Shr<usize>>::Output
>> operation. Read more
impl Shr<usize> for &Wrapping<u64>
type Output = <Wrapping<u64> as Shr<usize>>::Output
>> operator.fn shr(self, other: usize) -> <Wrapping<u64> as Shr<usize>>::Output
>> operation. Read more
impl Shr<usize> for &Wrapping<u8>
type Output = <Wrapping<u8> as Shr<usize>>::Output
>> operator.fn shr(self, other: usize) -> <Wrapping<u8> as Shr<usize>>::Output
>> operation. Read more
impl Shr<usize> for &Wrapping<usize>
type Output = <Wrapping<usize> as Shr<usize>>::Output
>> operator.fn shr(self, other: usize) -> <Wrapping<usize> as Shr<usize>>::Output
>> operation. Read more
impl Shr<usize> for Wrapping<i128>
type Output = Wrapping<i128>
>> operator.fn shr(self, other: usize) -> Wrapping<i128>
>> operation. Read more
impl Shr<usize> for Wrapping<i16>
type Output = Wrapping<i16>
>> operator.fn shr(self, other: usize) -> Wrapping<i16>
>> operation. Read more
impl Shr<usize> for Wrapping<i32>
type Output = Wrapping<i32>
>> operator.fn shr(self, other: usize) -> Wrapping<i32>
>> operation. Read more
impl Shr<usize> for Wrapping<i64>
type Output = Wrapping<i64>
>> operator.fn shr(self, other: usize) -> Wrapping<i64>
>> operation. Read more
impl Shr<usize> for Wrapping<i8>
type Output = Wrapping<i8>
>> operator.fn shr(self, other: usize) -> Wrapping<i8>
>> operation. Read more
impl Shr<usize> for Wrapping<isize>
type Output = Wrapping<isize>
>> operator.fn shr(self, other: usize) -> Wrapping<isize>
>> operation. Read more
impl Shr<usize> for Wrapping<u128>
type Output = Wrapping<u128>
>> operator.fn shr(self, other: usize) -> Wrapping<u128>
>> operation. Read more
impl Shr<usize> for Wrapping<u16>
type Output = Wrapping<u16>
>> operator.fn shr(self, other: usize) -> Wrapping<u16>
>> operation. Read more
impl Shr<usize> for Wrapping<u32>
type Output = Wrapping<u32>
>> operator.fn shr(self, other: usize) -> Wrapping<u32>
>> operation. Read more
impl Shr<usize> for Wrapping<u64>
type Output = Wrapping<u64>
>> operator.fn shr(self, other: usize) -> Wrapping<u64>
>> operation. Read more
impl Shr<usize> for Wrapping<u8>
type Output = Wrapping<u8>
>> operator.fn shr(self, other: usize) -> Wrapping<u8>
>> operation. Read more
impl Shr<usize> for Wrapping<usize>
type Output = Wrapping<usize>
>> operator.fn shr(self, other: usize) -> Wrapping<usize>
>> operation. Read more
impl ShrAssign<&usize> for Wrapping<i128>
impl ShrAssign<&usize> for Wrapping<i16>
impl ShrAssign<&usize> for Wrapping<i32>
impl ShrAssign<&usize> for Wrapping<i64>
impl ShrAssign<&usize> for Wrapping<i8>
impl ShrAssign<&usize> for Wrapping<isize>
impl ShrAssign<&usize> for Wrapping<u128>
impl ShrAssign<&usize> for Wrapping<u16>
impl ShrAssign<&usize> for Wrapping<u32>
impl ShrAssign<&usize> for Wrapping<u64>
impl ShrAssign<&usize> for Wrapping<u8>
impl ShrAssign<&usize> for Wrapping<usize>
impl ShrAssign<usize> for Wrapping<i128>
impl ShrAssign<usize> for Wrapping<i16>
impl ShrAssign<usize> for Wrapping<i32>
impl ShrAssign<usize> for Wrapping<i64>
impl ShrAssign<usize> for Wrapping<i8>
impl ShrAssign<usize> for Wrapping<isize>
impl ShrAssign<usize> for Wrapping<u128>
impl ShrAssign<usize> for Wrapping<u16>
impl ShrAssign<usize> for Wrapping<u32>
impl ShrAssign<usize> for Wrapping<u64>
impl ShrAssign<usize> for Wrapping<u8>
impl ShrAssign<usize> for Wrapping<usize>
impl Sub<&Wrapping<i128>> for &Wrapping<i128>
type Output = <Wrapping<i128> as Sub>::Output
- operator.fn sub(self, other: &Wrapping<i128>) -> <Wrapping<i128> as Sub>::Output
- operation. Read more
impl Sub<&Wrapping<i128>> for Wrapping<i128>
type Output = <Wrapping<i128> as Sub>::Output
- operator.fn sub(self, other: &Wrapping<i128>) -> <Wrapping<i128> as Sub>::Output
- operation. Read more
impl Sub<&Wrapping<i16>> for &Wrapping<i16>
type Output = <Wrapping<i16> as Sub>::Output
- operator.fn sub(self, other: &Wrapping<i16>) -> <Wrapping<i16> as Sub>::Output
- operation. Read more
impl Sub<&Wrapping<i16>> for Wrapping<i16>
type Output = <Wrapping<i16> as Sub>::Output
- operator.fn sub(self, other: &Wrapping<i16>) -> <Wrapping<i16> as Sub>::Output
- operation. Read more
impl Sub<&Wrapping<i32>> for &Wrapping<i32>
type Output = <Wrapping<i32> as Sub>::Output
- operator.fn sub(self, other: &Wrapping<i32>) -> <Wrapping<i32> as Sub>::Output
- operation. Read more
impl Sub<&Wrapping<i32>> for Wrapping<i32>
type Output = <Wrapping<i32> as Sub>::Output
- operator.fn sub(self, other: &Wrapping<i32>) -> <Wrapping<i32> as Sub>::Output
- operation. Read more
impl Sub<&Wrapping<i64>> for &Wrapping<i64>
type Output = <Wrapping<i64> as Sub>::Output
- operator.fn sub(self, other: &Wrapping<i64>) -> <Wrapping<i64> as Sub>::Output
- operation. Read more
impl Sub<&Wrapping<i64>> for Wrapping<i64>
type Output = <Wrapping<i64> as Sub>::Output
- operator.fn sub(self, other: &Wrapping<i64>) -> <Wrapping<i64> as Sub>::Output
- operation. Read more
impl Sub<&Wrapping<i8>> for &Wrapping<i8>
type Output = <Wrapping<i8> as Sub>::Output
- operator.fn sub(self, other: &Wrapping<i8>) -> <Wrapping<i8> as Sub>::Output
- operation. Read more
impl Sub<&Wrapping<i8>> for Wrapping<i8>
type Output = <Wrapping<i8> as Sub>::Output
- operator.fn sub(self, other: &Wrapping<i8>) -> <Wrapping<i8> as Sub>::Output
- operation. Read more
impl Sub<&Wrapping<isize>> for &Wrapping<isize>
type Output = <Wrapping<isize> as Sub>::Output
- operator.fn sub(self, other: &Wrapping<isize>) -> <Wrapping<isize> as Sub>::Output
- operation. Read more
impl Sub<&Wrapping<isize>> for Wrapping<isize>
type Output = <Wrapping<isize> as Sub>::Output
- operator.fn sub(self, other: &Wrapping<isize>) -> <Wrapping<isize> as Sub>::Output
- operation. Read more
impl Sub<&Wrapping<u128>> for &Wrapping<u128>
type Output = <Wrapping<u128> as Sub>::Output
- operator.fn sub(self, other: &Wrapping<u128>) -> <Wrapping<u128> as Sub>::Output
- operation. Read more
impl Sub<&Wrapping<u128>> for Wrapping<u128>
type Output = <Wrapping<u128> as Sub>::Output
- operator.fn sub(self, other: &Wrapping<u128>) -> <Wrapping<u128> as Sub>::Output
- operation. Read more
impl Sub<&Wrapping<u16>> for &Wrapping<u16>
type Output = <Wrapping<u16> as Sub>::Output
- operator.fn sub(self, other: &Wrapping<u16>) -> <Wrapping<u16> as Sub>::Output
- operation. Read more
impl Sub<&Wrapping<u16>> for Wrapping<u16>
type Output = <Wrapping<u16> as Sub>::Output
- operator.fn sub(self, other: &Wrapping<u16>) -> <Wrapping<u16> as Sub>::Output
- operation. Read more
impl Sub<&Wrapping<u32>> for &Wrapping<u32>
type Output = <Wrapping<u32> as Sub>::Output
- operator.fn sub(self, other: &Wrapping<u32>) -> <Wrapping<u32> as Sub>::Output
- operation. Read more
impl Sub<&Wrapping<u32>> for Wrapping<u32>
type Output = <Wrapping<u32> as Sub>::Output
- operator.fn sub(self, other: &Wrapping<u32>) -> <Wrapping<u32> as Sub>::Output
- operation. Read more
impl Sub<&Wrapping<u64>> for &Wrapping<u64>
type Output = <Wrapping<u64> as Sub>::Output
- operator.fn sub(self, other: &Wrapping<u64>) -> <Wrapping<u64> as Sub>::Output
- operation. Read more
impl Sub<&Wrapping<u64>> for Wrapping<u64>
type Output = <Wrapping<u64> as Sub>::Output
- operator.fn sub(self, other: &Wrapping<u64>) -> <Wrapping<u64> as Sub>::Output
- operation. Read more
impl Sub<&Wrapping<u8>> for &Wrapping<u8>
type Output = <Wrapping<u8> as Sub>::Output
- operator.fn sub(self, other: &Wrapping<u8>) -> <Wrapping<u8> as Sub>::Output
- operation. Read more
impl Sub<&Wrapping<u8>> for Wrapping<u8>
type Output = <Wrapping<u8> as Sub>::Output
- operator.fn sub(self, other: &Wrapping<u8>) -> <Wrapping<u8> as Sub>::Output
- operation. Read more
impl Sub<&Wrapping<usize>> for &Wrapping<usize>
type Output = <Wrapping<usize> as Sub>::Output
- operator.fn sub(self, other: &Wrapping<usize>) -> <Wrapping<usize> as Sub>::Output
- operation. Read more
impl Sub<&Wrapping<usize>> for Wrapping<usize>
type Output = <Wrapping<usize> as Sub>::Output
- operator.fn sub(self, other: &Wrapping<usize>) -> <Wrapping<usize> as Sub>::Output
- operation. Read more
impl Sub<Wrapping<i128>> for &Wrapping<i128>
type Output = <Wrapping<i128> as Sub>::Output
- operator.fn sub(self, other: Wrapping<i128>) -> <Wrapping<i128> as Sub>::Output
- operation. Read more
impl Sub<Wrapping<i16>> for &Wrapping<i16>
type Output = <Wrapping<i16> as Sub>::Output
- operator.fn sub(self, other: Wrapping<i16>) -> <Wrapping<i16> as Sub>::Output
- operation. Read more
impl Sub<Wrapping<i32>> for &Wrapping<i32>
type Output = <Wrapping<i32> as Sub>::Output
- operator.fn sub(self, other: Wrapping<i32>) -> <Wrapping<i32> as Sub>::Output
- operation. Read more
impl Sub<Wrapping<i64>> for &Wrapping<i64>
type Output = <Wrapping<i64> as Sub>::Output
- operator.fn sub(self, other: Wrapping<i64>) -> <Wrapping<i64> as Sub>::Output
- operation. Read more
impl Sub<Wrapping<i8>> for &Wrapping<i8>
type Output = <Wrapping<i8> as Sub>::Output
- operator.fn sub(self, other: Wrapping<i8>) -> <Wrapping<i8> as Sub>::Output
- operation. Read more
impl Sub<Wrapping<isize>> for &Wrapping<isize>
type Output = <Wrapping<isize> as Sub>::Output
- operator.fn sub(self, other: Wrapping<isize>) -> <Wrapping<isize> as Sub>::Output
- operation. Read more
impl Sub<Wrapping<u128>> for &Wrapping<u128>
type Output = <Wrapping<u128> as Sub>::Output
- operator.fn sub(self, other: Wrapping<u128>) -> <Wrapping<u128> as Sub>::Output
- operation. Read more
impl Sub<Wrapping<u16>> for &Wrapping<u16>
type Output = <Wrapping<u16> as Sub>::Output
- operator.fn sub(self, other: Wrapping<u16>) -> <Wrapping<u16> as Sub>::Output
- operation. Read more
impl Sub<Wrapping<u32>> for &Wrapping<u32>
type Output = <Wrapping<u32> as Sub>::Output
- operator.fn sub(self, other: Wrapping<u32>) -> <Wrapping<u32> as Sub>::Output
- operation. Read more
impl Sub<Wrapping<u64>> for &Wrapping<u64>
type Output = <Wrapping<u64> as Sub>::Output
- operator.fn sub(self, other: Wrapping<u64>) -> <Wrapping<u64> as Sub>::Output
- operation. Read more
impl Sub<Wrapping<u8>> for &Wrapping<u8>
type Output = <Wrapping<u8> as Sub>::Output
- operator.fn sub(self, other: Wrapping<u8>) -> <Wrapping<u8> as Sub>::Output
- operation. Read more
impl Sub<Wrapping<usize>> for &Wrapping<usize>
type Output = <Wrapping<usize> as Sub>::Output
- operator.fn sub(self, other: Wrapping<usize>) -> <Wrapping<usize> as Sub>::Output
- operation. Read more
impl Sub for Wrapping<i128>
type Output = Wrapping<i128>
- operator.fn sub(self, other: Wrapping<i128>) -> Wrapping<i128>
- operation. Read more
impl Sub for Wrapping<i16>
type Output = Wrapping<i16>
- operator.fn sub(self, other: Wrapping<i16>) -> Wrapping<i16>
- operation. Read more
impl Sub for Wrapping<i32>
type Output = Wrapping<i32>
- operator.fn sub(self, other: Wrapping<i32>) -> Wrapping<i32>
- operation. Read more
impl Sub for Wrapping<i64>
type Output = Wrapping<i64>
- operator.fn sub(self, other: Wrapping<i64>) -> Wrapping<i64>
- operation. Read more
impl Sub for Wrapping<i8>
type Output = Wrapping<i8>
- operator.fn sub(self, other: Wrapping<i8>) -> Wrapping<i8>
- operation. Read more
impl Sub for Wrapping<isize>
type Output = Wrapping<isize>
- operator.fn sub(self, other: Wrapping<isize>) -> Wrapping<isize>
- operation. Read more
impl Sub for Wrapping<u128>
type Output = Wrapping<u128>
- operator.fn sub(self, other: Wrapping<u128>) -> Wrapping<u128>
- operation. Read more
impl Sub for Wrapping<u16>
type Output = Wrapping<u16>
- operator.fn sub(self, other: Wrapping<u16>) -> Wrapping<u16>
- operation. Read more
impl Sub for Wrapping<u32>
type Output = Wrapping<u32>
- operator.fn sub(self, other: Wrapping<u32>) -> Wrapping<u32>
- operation. Read more
impl Sub for Wrapping<u64>
type Output = Wrapping<u64>
- operator.fn sub(self, other: Wrapping<u64>) -> Wrapping<u64>
- operation. Read more
impl Sub for Wrapping<u8>
type Output = Wrapping<u8>
- operator.fn sub(self, other: Wrapping<u8>) -> Wrapping<u8>
- operation. Read more
impl Sub for Wrapping<usize>
type Output = Wrapping<usize>
- operator.fn sub(self, other: Wrapping<usize>) -> Wrapping<usize>
- operation. Read more
impl SubAssign<&Wrapping<i128>> for Wrapping<i128>
impl SubAssign<&Wrapping<i16>> for Wrapping<i16>
impl SubAssign<&Wrapping<i32>> for Wrapping<i32>
impl SubAssign<&Wrapping<i64>> for Wrapping<i64>
impl SubAssign<&Wrapping<i8>> for Wrapping<i8>
impl SubAssign<&Wrapping<isize>> for Wrapping<isize>
impl SubAssign<&Wrapping<u128>> for Wrapping<u128>
impl SubAssign<&Wrapping<u16>> for Wrapping<u16>
impl SubAssign<&Wrapping<u32>> for Wrapping<u32>
impl SubAssign<&Wrapping<u64>> for Wrapping<u64>
impl SubAssign<&Wrapping<u8>> for Wrapping<u8>
impl SubAssign<&Wrapping<usize>> for Wrapping<usize>
impl SubAssign<&i128> for Wrapping<i128>
impl SubAssign<&i16> for Wrapping<i16>
impl SubAssign<&i32> for Wrapping<i32>
impl SubAssign<&i64> for Wrapping<i64>
impl SubAssign<&i8> for Wrapping<i8>
impl SubAssign<&isize> for Wrapping<isize>
impl SubAssign<&u128> for Wrapping<u128>
impl SubAssign<&u16> for Wrapping<u16>
impl SubAssign<&u32> for Wrapping<u32>
impl SubAssign<&u64> for Wrapping<u64>
impl SubAssign<&u8> for Wrapping<u8>
impl SubAssign<&usize> for Wrapping<usize>
impl SubAssign<i128> for Wrapping<i128>
impl SubAssign<i16> for Wrapping<i16>
impl SubAssign<i32> for Wrapping<i32>
impl SubAssign<i64> for Wrapping<i64>
impl SubAssign<i8> for Wrapping<i8>
impl SubAssign<isize> for Wrapping<isize>
impl SubAssign<u128> for Wrapping<u128>
impl SubAssign<u16> for Wrapping<u16>
impl SubAssign<u32> for Wrapping<u32>
impl SubAssign<u64> for Wrapping<u64>
impl SubAssign<u8> for Wrapping<u8>
impl SubAssign<usize> for Wrapping<usize>
impl SubAssign for Wrapping<i128>
impl SubAssign for Wrapping<i16>
impl SubAssign for Wrapping<i32>
impl SubAssign for Wrapping<i64>
impl SubAssign for Wrapping<i8>
impl SubAssign for Wrapping<isize>
impl SubAssign for Wrapping<u128>
impl SubAssign for Wrapping<u16>
impl SubAssign for Wrapping<u32>
impl SubAssign for Wrapping<u64>
impl SubAssign for Wrapping<u8>
impl SubAssign for Wrapping<usize>
impl<'a> Sum<&'a Wrapping<i128>> for Wrapping<i128>
fn sum<I>(iter: I) -> Wrapping<i128>where
I: Iterator<Item = &'a Wrapping<i128>>,Self from the elements by “summing up” the items.impl<'a> Sum<&'a Wrapping<i16>> for Wrapping<i16>
fn sum<I>(iter: I) -> Wrapping<i16>where
I: Iterator<Item = &'a Wrapping<i16>>,Self from the elements by “summing up” the items.impl<'a> Sum<&'a Wrapping<i32>> for Wrapping<i32>
fn sum<I>(iter: I) -> Wrapping<i32>where
I: Iterator<Item = &'a Wrapping<i32>>,Self from the elements by “summing up” the items.impl<'a> Sum<&'a Wrapping<i64>> for Wrapping<i64>
fn sum<I>(iter: I) -> Wrapping<i64>where
I: Iterator<Item = &'a Wrapping<i64>>,Self from the elements by “summing up” the items.impl<'a> Sum<&'a Wrapping<i8>> for Wrapping<i8>
fn sum<I>(iter: I) -> Wrapping<i8>where
I: Iterator<Item = &'a Wrapping<i8>>,Self from the elements by “summing up” the items.impl<'a> Sum<&'a Wrapping<isize>> for Wrapping<isize>
fn sum<I>(iter: I) -> Wrapping<isize>where
I: Iterator<Item = &'a Wrapping<isize>>,Self from the elements by “summing up” the items.impl<'a> Sum<&'a Wrapping<u128>> for Wrapping<u128>
fn sum<I>(iter: I) -> Wrapping<u128>where
I: Iterator<Item = &'a Wrapping<u128>>,Self from the elements by “summing up” the items.impl<'a> Sum<&'a Wrapping<u16>> for Wrapping<u16>
fn sum<I>(iter: I) -> Wrapping<u16>where
I: Iterator<Item = &'a Wrapping<u16>>,Self from the elements by “summing up” the items.impl<'a> Sum<&'a Wrapping<u32>> for Wrapping<u32>
fn sum<I>(iter: I) -> Wrapping<u32>where
I: Iterator<Item = &'a Wrapping<u32>>,Self from the elements by “summing up” the items.impl<'a> Sum<&'a Wrapping<u64>> for Wrapping<u64>
fn sum<I>(iter: I) -> Wrapping<u64>where
I: Iterator<Item = &'a Wrapping<u64>>,Self from the elements by “summing up” the items.impl<'a> Sum<&'a Wrapping<u8>> for Wrapping<u8>
fn sum<I>(iter: I) -> Wrapping<u8>where
I: Iterator<Item = &'a Wrapping<u8>>,Self from the elements by “summing up” the items.impl<'a> Sum<&'a Wrapping<usize>> for Wrapping<usize>
fn sum<I>(iter: I) -> Wrapping<usize>where
I: Iterator<Item = &'a Wrapping<usize>>,Self from the elements by “summing up” the items.impl Sum for Wrapping<i128>
fn sum<I>(iter: I) -> Wrapping<i128>where
I: Iterator<Item = Wrapping<i128>>,Self from the elements by “summing up” the items.impl Sum for Wrapping<i16>
fn sum<I>(iter: I) -> Wrapping<i16>where
I: Iterator<Item = Wrapping<i16>>,Self from the elements by “summing up” the items.impl Sum for Wrapping<i32>
fn sum<I>(iter: I) -> Wrapping<i32>where
I: Iterator<Item = Wrapping<i32>>,Self from the elements by “summing up” the items.impl Sum for Wrapping<i64>
fn sum<I>(iter: I) -> Wrapping<i64>where
I: Iterator<Item = Wrapping<i64>>,Self from the elements by “summing up” the items.impl Sum for Wrapping<i8>
fn sum<I>(iter: I) -> Wrapping<i8>where
I: Iterator<Item = Wrapping<i8>>,Self from the elements by “summing up” the items.impl Sum for Wrapping<isize>
fn sum<I>(iter: I) -> Wrapping<isize>where
I: Iterator<Item = Wrapping<isize>>,Self from the elements by “summing up” the items.impl Sum for Wrapping<u128>
fn sum<I>(iter: I) -> Wrapping<u128>where
I: Iterator<Item = Wrapping<u128>>,Self from the elements by “summing up” the items.impl Sum for Wrapping<u16>
fn sum<I>(iter: I) -> Wrapping<u16>where
I: Iterator<Item = Wrapping<u16>>,Self from the elements by “summing up” the items.impl Sum for Wrapping<u32>
fn sum<I>(iter: I) -> Wrapping<u32>where
I: Iterator<Item = Wrapping<u32>>,Self from the elements by “summing up” the items.impl Sum for Wrapping<u64>
fn sum<I>(iter: I) -> Wrapping<u64>where
I: Iterator<Item = Wrapping<u64>>,Self from the elements by “summing up” the items.impl Sum for Wrapping<u8>
fn sum<I>(iter: I) -> Wrapping<u8>where
I: Iterator<Item = Wrapping<u8>>,Self from the elements by “summing up” the items.impl Sum for Wrapping<usize>
fn sum<I>(iter: I) -> Wrapping<usize>where
I: Iterator<Item = Wrapping<usize>>,Self from the elements by “summing up” the items.impl<T> UpperHex for Wrapping<T>where
T: UpperHex,fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>
impl<T> Copy for Wrapping<T>where
T: Copy,impl<T> Eq for Wrapping<T>where
T: Eq,impl<T> StructuralPartialEq for Wrapping<T>
impl<T> Freeze for Wrapping<T>where
T: Freeze,impl<T> RefUnwindSafe for Wrapping<T>where
T: RefUnwindSafe,impl<T> Send for Wrapping<T>where
T: Send,impl<T> Sync for Wrapping<T>where
T: Sync,impl<T> Unpin for Wrapping<T>where
T: Unpin,impl<T> UnwindSafe for Wrapping<T>where
T: UnwindSafe,impl<T> Any for Twhere
T: 'static + ?Sized,impl<T> Borrow<T> for Twhere
T: ?Sized,impl<T> BorrowMut<T> for Twhere
T: ?Sized,impl<T> CloneToUninit for Twhere
T: Clone,unsafe fn clone_to_uninit(&self, dest: *mut u8)
clone_to_uninit #126799)
impl<T> From<T> for T
fn from(t: T) -> T
Returns the argument unchanged.
impl<T, U> Into<U> for Twhere
U: From<T>,fn into(self) -> U
Calls U::from(self).
That is, this conversion is whatever the implementation of From<T> for U chooses to do.
impl<T> ToOwned for Twhere
T: Clone,type Owned = T
fn to_owned(&self) -> T
fn clone_into(&self, target: &mut T)
impl<T> ToString for Twhere
T: Display + ?Sized,impl<T, U> TryFrom<U> for Twhere
U: Into<T>,type Error = Infallible
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
impl<T, U> TryInto<U> for Twhere
U: TryFrom<T>,
© 2010 The Rust Project Developers
Licensed under the Apache License, Version 2.0 or the MIT license, at your option.
https://doc.rust-lang.org/std/num/struct.Wrapping.html