#[repr(transparent)]pub struct Wrapping<T>(pub T);
Expand description
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.
Examples
use std::num::Wrapping;
let zero = Wrapping(0u32);
let one = Wrapping(1u32);
assert_eq!(u32::MAX, (zero - one).0);
RunLayout
Wrapping<T>
is guaranteed to have the same layout and ABI as T
.
Tuple Fields
0: T
Implementations
sourceimpl Wrapping<usize>
impl Wrapping<usize>
sourcepub const fn count_ones(self) -> u32
pub const fn count_ones(self) -> u32
sourcepub const fn count_zeros(self) -> u32
pub const fn count_zeros(self) -> u32
sourcepub const fn trailing_zeros(self) -> u32
pub const fn trailing_zeros(self) -> u32
sourcepub const fn rotate_left(self, n: u32) -> Self
pub const fn rotate_left(self, n: u32) -> Self
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!
Examples
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);
Runsourcepub const fn rotate_right(self, n: u32) -> Self
pub const fn rotate_right(self, n: u32) -> Self
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!
Examples
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);
Runsourcepub const fn swap_bytes(self) -> Self
pub const fn swap_bytes(self) -> Self
Reverses the byte order of the integer.
Examples
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));
Run1.37.0 (const: 1.37.0) · sourcepub const fn reverse_bits(self) -> Self
pub const fn reverse_bits(self) -> Self
Reverses the bit pattern of the integer.
Examples
Please note that this example is shared between integer types.
Which explains why i16
is used here.
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));
Runsourcepub const fn from_be(x: Self) -> Self
pub const fn from_be(x: Self) -> Self
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.
Examples
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())
}
Runsourcepub const fn from_le(x: Self) -> Self
pub const fn from_le(x: Self) -> Self
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.
Examples
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())
}
Runsourcepub const fn to_be(self) -> Self
pub const fn to_be(self) -> Self
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.
Examples
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())
}
Runsourcepub const fn to_le(self) -> Self
pub const fn to_le(self) -> Self
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.
Examples
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())
}
Runsourcepub fn pow(self, exp: u32) -> Self
pub fn pow(self, exp: u32) -> Self
Raises self to the power of exp
, using exponentiation by squaring.
Examples
Basic usage:
#![feature(wrapping_int_impl)]
use std::num::Wrapping;
assert_eq!(Wrapping(3usize).pow(4), Wrapping(81));
RunResults 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));
Runsourceimpl Wrapping<u8>
impl Wrapping<u8>
sourcepub const fn count_ones(self) -> u32
pub const fn count_ones(self) -> u32
sourcepub const fn count_zeros(self) -> u32
pub const fn count_zeros(self) -> u32
sourcepub const fn trailing_zeros(self) -> u32
pub const fn trailing_zeros(self) -> u32
sourcepub const fn rotate_left(self, n: u32) -> Self
pub const fn rotate_left(self, n: u32) -> Self
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!
Examples
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);
Runsourcepub const fn rotate_right(self, n: u32) -> Self
pub const fn rotate_right(self, n: u32) -> Self
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!
Examples
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);
Runsourcepub const fn swap_bytes(self) -> Self
pub const fn swap_bytes(self) -> Self
Reverses the byte order of the integer.
Examples
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));
Run1.37.0 (const: 1.37.0) · sourcepub const fn reverse_bits(self) -> Self
pub const fn reverse_bits(self) -> Self
Reverses the bit pattern of the integer.
Examples
Please note that this example is shared between integer types.
Which explains why i16
is used here.
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));
Runsourcepub const fn from_be(x: Self) -> Self
pub const fn from_be(x: Self) -> Self
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.
Examples
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())
}
Runsourcepub const fn from_le(x: Self) -> Self
pub const fn from_le(x: Self) -> Self
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.
Examples
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())
}
Runsourcepub const fn to_be(self) -> Self
pub const fn to_be(self) -> Self
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.
Examples
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())
}
Runsourcepub const fn to_le(self) -> Self
pub const fn to_le(self) -> Self
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.
Examples
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())
}
Runsourcepub fn pow(self, exp: u32) -> Self
pub fn pow(self, exp: u32) -> Self
Raises self to the power of exp
, using exponentiation by squaring.
Examples
Basic usage:
#![feature(wrapping_int_impl)]
use std::num::Wrapping;
assert_eq!(Wrapping(3u8).pow(4), Wrapping(81));
RunResults 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));
Runsourceimpl Wrapping<u16>
impl Wrapping<u16>
sourcepub const fn count_ones(self) -> u32
pub const fn count_ones(self) -> u32
sourcepub const fn count_zeros(self) -> u32
pub const fn count_zeros(self) -> u32
sourcepub const fn trailing_zeros(self) -> u32
pub const fn trailing_zeros(self) -> u32
sourcepub const fn rotate_left(self, n: u32) -> Self
pub const fn rotate_left(self, n: u32) -> Self
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!
Examples
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);
Runsourcepub const fn rotate_right(self, n: u32) -> Self
pub const fn rotate_right(self, n: u32) -> Self
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!
Examples
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);
Runsourcepub const fn swap_bytes(self) -> Self
pub const fn swap_bytes(self) -> Self
Reverses the byte order of the integer.
Examples
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));
Run1.37.0 (const: 1.37.0) · sourcepub const fn reverse_bits(self) -> Self
pub const fn reverse_bits(self) -> Self
Reverses the bit pattern of the integer.
Examples
Please note that this example is shared between integer types.
Which explains why i16
is used here.
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));
Runsourcepub const fn from_be(x: Self) -> Self
pub const fn from_be(x: Self) -> Self
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.
Examples
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())
}
Runsourcepub const fn from_le(x: Self) -> Self
pub const fn from_le(x: Self) -> Self
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.
Examples
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())
}
Runsourcepub const fn to_be(self) -> Self
pub const fn to_be(self) -> Self
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.
Examples
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())
}
Runsourcepub const fn to_le(self) -> Self
pub const fn to_le(self) -> Self
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.
Examples
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())
}
Runsourcepub fn pow(self, exp: u32) -> Self
pub fn pow(self, exp: u32) -> Self
Raises self to the power of exp
, using exponentiation by squaring.
Examples
Basic usage:
#![feature(wrapping_int_impl)]
use std::num::Wrapping;
assert_eq!(Wrapping(3u16).pow(4), Wrapping(81));
RunResults 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));
Runsourceimpl Wrapping<u32>
impl Wrapping<u32>
sourcepub const fn count_ones(self) -> u32
pub const fn count_ones(self) -> u32
sourcepub const fn count_zeros(self) -> u32
pub const fn count_zeros(self) -> u32
sourcepub const fn trailing_zeros(self) -> u32
pub const fn trailing_zeros(self) -> u32
sourcepub const fn rotate_left(self, n: u32) -> Self
pub const fn rotate_left(self, n: u32) -> Self
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!
Examples
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);
Runsourcepub const fn rotate_right(self, n: u32) -> Self
pub const fn rotate_right(self, n: u32) -> Self
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!
Examples
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);
Runsourcepub const fn swap_bytes(self) -> Self
pub const fn swap_bytes(self) -> Self
Reverses the byte order of the integer.
Examples
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));
Run1.37.0 (const: 1.37.0) · sourcepub const fn reverse_bits(self) -> Self
pub const fn reverse_bits(self) -> Self
Reverses the bit pattern of the integer.
Examples
Please note that this example is shared between integer types.
Which explains why i16
is used here.
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));
Runsourcepub const fn from_be(x: Self) -> Self
pub const fn from_be(x: Self) -> Self
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.
Examples
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())
}
Runsourcepub const fn from_le(x: Self) -> Self
pub const fn from_le(x: Self) -> Self
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.
Examples
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())
}
Runsourcepub const fn to_be(self) -> Self
pub const fn to_be(self) -> Self
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.
Examples
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())
}
Runsourcepub const fn to_le(self) -> Self
pub const fn to_le(self) -> Self
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.
Examples
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())
}
Runsourcepub fn pow(self, exp: u32) -> Self
pub fn pow(self, exp: u32) -> Self
Raises self to the power of exp
, using exponentiation by squaring.
Examples
Basic usage:
#![feature(wrapping_int_impl)]
use std::num::Wrapping;
assert_eq!(Wrapping(3u32).pow(4), Wrapping(81));
RunResults 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));
Runsourceimpl Wrapping<u64>
impl Wrapping<u64>
sourcepub const fn count_ones(self) -> u32
pub const fn count_ones(self) -> u32
sourcepub const fn count_zeros(self) -> u32
pub const fn count_zeros(self) -> u32
sourcepub const fn trailing_zeros(self) -> u32
pub const fn trailing_zeros(self) -> u32
sourcepub const fn rotate_left(self, n: u32) -> Self
pub const fn rotate_left(self, n: u32) -> Self
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!
Examples
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);
Runsourcepub const fn rotate_right(self, n: u32) -> Self
pub const fn rotate_right(self, n: u32) -> Self
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!
Examples
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);
Runsourcepub const fn swap_bytes(self) -> Self
pub const fn swap_bytes(self) -> Self
Reverses the byte order of the integer.
Examples
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));
Run1.37.0 (const: 1.37.0) · sourcepub const fn reverse_bits(self) -> Self
pub const fn reverse_bits(self) -> Self
Reverses the bit pattern of the integer.
Examples
Please note that this example is shared between integer types.
Which explains why i16
is used here.
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));
Runsourcepub const fn from_be(x: Self) -> Self
pub const fn from_be(x: Self) -> Self
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.
Examples
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())
}
Runsourcepub const fn from_le(x: Self) -> Self
pub const fn from_le(x: Self) -> Self
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.
Examples
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())
}
Runsourcepub const fn to_be(self) -> Self
pub const fn to_be(self) -> Self
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.
Examples
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())
}
Runsourcepub const fn to_le(self) -> Self
pub const fn to_le(self) -> Self
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.
Examples
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())
}
Runsourcepub fn pow(self, exp: u32) -> Self
pub fn pow(self, exp: u32) -> Self
Raises self to the power of exp
, using exponentiation by squaring.
Examples
Basic usage:
#![feature(wrapping_int_impl)]
use std::num::Wrapping;
assert_eq!(Wrapping(3u64).pow(4), Wrapping(81));
RunResults 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));
Runsourceimpl Wrapping<u128>
impl Wrapping<u128>
sourcepub const fn count_ones(self) -> u32
pub const fn count_ones(self) -> u32
sourcepub const fn count_zeros(self) -> u32
pub const fn count_zeros(self) -> u32
sourcepub const fn trailing_zeros(self) -> u32
pub const fn trailing_zeros(self) -> u32
sourcepub const fn rotate_left(self, n: u32) -> Self
pub const fn rotate_left(self, n: u32) -> Self
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!
Examples
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);
Runsourcepub const fn rotate_right(self, n: u32) -> Self
pub const fn rotate_right(self, n: u32) -> Self
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!
Examples
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);
Runsourcepub const fn swap_bytes(self) -> Self
pub const fn swap_bytes(self) -> Self
Reverses the byte order of the integer.
Examples
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));
Run1.37.0 (const: 1.37.0) · sourcepub const fn reverse_bits(self) -> Self
pub const fn reverse_bits(self) -> Self
Reverses the bit pattern of the integer.
Examples
Please note that this example is shared between integer types.
Which explains why i16
is used here.
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));
Runsourcepub const fn from_be(x: Self) -> Self
pub const fn from_be(x: Self) -> Self
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.
Examples
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())
}
Runsourcepub const fn from_le(x: Self) -> Self
pub const fn from_le(x: Self) -> Self
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.
Examples
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())
}
Runsourcepub const fn to_be(self) -> Self
pub const fn to_be(self) -> Self
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.
Examples
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())
}
Runsourcepub const fn to_le(self) -> Self
pub const fn to_le(self) -> Self
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.
Examples
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())
}
Runsourcepub fn pow(self, exp: u32) -> Self
pub fn pow(self, exp: u32) -> Self
Raises self to the power of exp
, using exponentiation by squaring.
Examples
Basic usage:
#![feature(wrapping_int_impl)]
use std::num::Wrapping;
assert_eq!(Wrapping(3u128).pow(4), Wrapping(81));
RunResults 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));
Runsourceimpl Wrapping<isize>
impl Wrapping<isize>
sourcepub const fn count_ones(self) -> u32
pub const fn count_ones(self) -> u32
sourcepub const fn count_zeros(self) -> u32
pub const fn count_zeros(self) -> u32
sourcepub const fn trailing_zeros(self) -> u32
pub const fn trailing_zeros(self) -> u32
sourcepub const fn rotate_left(self, n: u32) -> Self
pub const fn rotate_left(self, n: u32) -> Self
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!
Examples
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);
Runsourcepub const fn rotate_right(self, n: u32) -> Self
pub const fn rotate_right(self, n: u32) -> Self
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!
Examples
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);
Runsourcepub const fn swap_bytes(self) -> Self
pub const fn swap_bytes(self) -> Self
Reverses the byte order of the integer.
Examples
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));
Run1.37.0 (const: 1.37.0) · sourcepub const fn reverse_bits(self) -> Self
pub const fn reverse_bits(self) -> Self
Reverses the bit pattern of the integer.
Examples
Please note that this example is shared between integer types.
Which explains why i16
is used here.
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));
Runsourcepub const fn from_be(x: Self) -> Self
pub const fn from_be(x: Self) -> Self
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.
Examples
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())
}
Runsourcepub const fn from_le(x: Self) -> Self
pub const fn from_le(x: Self) -> Self
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.
Examples
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())
}
Runsourcepub const fn to_be(self) -> Self
pub const fn to_be(self) -> Self
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.
Examples
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())
}
Runsourcepub const fn to_le(self) -> Self
pub const fn to_le(self) -> Self
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.
Examples
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())
}
Runsourcepub fn pow(self, exp: u32) -> Self
pub fn pow(self, exp: u32) -> Self
Raises self to the power of exp
, using exponentiation by squaring.
Examples
Basic usage:
#![feature(wrapping_int_impl)]
use std::num::Wrapping;
assert_eq!(Wrapping(3isize).pow(4), Wrapping(81));
RunResults 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));
Runsourceimpl Wrapping<i8>
impl Wrapping<i8>
sourcepub const fn count_ones(self) -> u32
pub const fn count_ones(self) -> u32
sourcepub const fn count_zeros(self) -> u32
pub const fn count_zeros(self) -> u32
sourcepub const fn trailing_zeros(self) -> u32
pub const fn trailing_zeros(self) -> u32
sourcepub const fn rotate_left(self, n: u32) -> Self
pub const fn rotate_left(self, n: u32) -> Self
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!
Examples
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);
Runsourcepub const fn rotate_right(self, n: u32) -> Self
pub const fn rotate_right(self, n: u32) -> Self
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!
Examples
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);
Runsourcepub const fn swap_bytes(self) -> Self
pub const fn swap_bytes(self) -> Self
Reverses the byte order of the integer.
Examples
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));
Run1.37.0 (const: 1.37.0) · sourcepub const fn reverse_bits(self) -> Self
pub const fn reverse_bits(self) -> Self
Reverses the bit pattern of the integer.
Examples
Please note that this example is shared between integer types.
Which explains why i16
is used here.
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));
Runsourcepub const fn from_be(x: Self) -> Self
pub const fn from_be(x: Self) -> Self
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.
Examples
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())
}
Runsourcepub const fn from_le(x: Self) -> Self
pub const fn from_le(x: Self) -> Self
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.
Examples
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())
}
Runsourcepub const fn to_be(self) -> Self
pub const fn to_be(self) -> Self
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.
Examples
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())
}
Runsourcepub const fn to_le(self) -> Self
pub const fn to_le(self) -> Self
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.
Examples
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())
}
Runsourcepub fn pow(self, exp: u32) -> Self
pub fn pow(self, exp: u32) -> Self
Raises self to the power of exp
, using exponentiation by squaring.
Examples
Basic usage:
#![feature(wrapping_int_impl)]
use std::num::Wrapping;
assert_eq!(Wrapping(3i8).pow(4), Wrapping(81));
RunResults 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));
Runsourceimpl Wrapping<i16>
impl Wrapping<i16>
sourcepub const fn count_ones(self) -> u32
pub const fn count_ones(self) -> u32
sourcepub const fn count_zeros(self) -> u32
pub const fn count_zeros(self) -> u32
sourcepub const fn trailing_zeros(self) -> u32
pub const fn trailing_zeros(self) -> u32
sourcepub const fn rotate_left(self, n: u32) -> Self
pub const fn rotate_left(self, n: u32) -> Self
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!
Examples
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);
Runsourcepub const fn rotate_right(self, n: u32) -> Self
pub const fn rotate_right(self, n: u32) -> Self
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!
Examples
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);
Runsourcepub const fn swap_bytes(self) -> Self
pub const fn swap_bytes(self) -> Self
Reverses the byte order of the integer.
Examples
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));
Run1.37.0 (const: 1.37.0) · sourcepub const fn reverse_bits(self) -> Self
pub const fn reverse_bits(self) -> Self
Reverses the bit pattern of the integer.
Examples
Please note that this example is shared between integer types.
Which explains why i16
is used here.
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));
Runsourcepub const fn from_be(x: Self) -> Self
pub const fn from_be(x: Self) -> Self
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.
Examples
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())
}
Runsourcepub const fn from_le(x: Self) -> Self
pub const fn from_le(x: Self) -> Self
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.
Examples
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())
}
Runsourcepub const fn to_be(self) -> Self
pub const fn to_be(self) -> Self
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.
Examples
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())
}
Runsourcepub const fn to_le(self) -> Self
pub const fn to_le(self) -> Self
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.
Examples
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())
}
Runsourcepub fn pow(self, exp: u32) -> Self
pub fn pow(self, exp: u32) -> Self
Raises self to the power of exp
, using exponentiation by squaring.
Examples
Basic usage:
#![feature(wrapping_int_impl)]
use std::num::Wrapping;
assert_eq!(Wrapping(3i16).pow(4), Wrapping(81));
RunResults 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));
Runsourceimpl Wrapping<i32>
impl Wrapping<i32>
sourcepub const fn count_ones(self) -> u32
pub const fn count_ones(self) -> u32
sourcepub const fn count_zeros(self) -> u32
pub const fn count_zeros(self) -> u32
sourcepub const fn trailing_zeros(self) -> u32
pub const fn trailing_zeros(self) -> u32
sourcepub const fn rotate_left(self, n: u32) -> Self
pub const fn rotate_left(self, n: u32) -> Self
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!
Examples
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);
Runsourcepub const fn rotate_right(self, n: u32) -> Self
pub const fn rotate_right(self, n: u32) -> Self
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!
Examples
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);
Runsourcepub const fn swap_bytes(self) -> Self
pub const fn swap_bytes(self) -> Self
Reverses the byte order of the integer.
Examples
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));
Run1.37.0 (const: 1.37.0) · sourcepub const fn reverse_bits(self) -> Self
pub const fn reverse_bits(self) -> Self
Reverses the bit pattern of the integer.
Examples
Please note that this example is shared between integer types.
Which explains why i16
is used here.
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));
Runsourcepub const fn from_be(x: Self) -> Self
pub const fn from_be(x: Self) -> Self
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.
Examples
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())
}
Runsourcepub const fn from_le(x: Self) -> Self
pub const fn from_le(x: Self) -> Self
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.
Examples
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())
}
Runsourcepub const fn to_be(self) -> Self
pub const fn to_be(self) -> Self
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.
Examples
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())
}
Runsourcepub const fn to_le(self) -> Self
pub const fn to_le(self) -> Self
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.
Examples
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())
}
Runsourcepub fn pow(self, exp: u32) -> Self
pub fn pow(self, exp: u32) -> Self
Raises self to the power of exp
, using exponentiation by squaring.
Examples
Basic usage:
#![feature(wrapping_int_impl)]
use std::num::Wrapping;
assert_eq!(Wrapping(3i32).pow(4), Wrapping(81));
RunResults 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));
Runsourceimpl Wrapping<i64>
impl Wrapping<i64>
sourcepub const fn count_ones(self) -> u32
pub const fn count_ones(self) -> u32
sourcepub const fn count_zeros(self) -> u32
pub const fn count_zeros(self) -> u32
sourcepub const fn trailing_zeros(self) -> u32
pub const fn trailing_zeros(self) -> u32
sourcepub const fn rotate_left(self, n: u32) -> Self
pub const fn rotate_left(self, n: u32) -> Self
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!
Examples
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);
Runsourcepub const fn rotate_right(self, n: u32) -> Self
pub const fn rotate_right(self, n: u32) -> Self
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!
Examples
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);
Runsourcepub const fn swap_bytes(self) -> Self
pub const fn swap_bytes(self) -> Self
Reverses the byte order of the integer.
Examples
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));
Run1.37.0 (const: 1.37.0) · sourcepub const fn reverse_bits(self) -> Self
pub const fn reverse_bits(self) -> Self
Reverses the bit pattern of the integer.
Examples
Please note that this example is shared between integer types.
Which explains why i16
is used here.
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));
Runsourcepub const fn from_be(x: Self) -> Self
pub const fn from_be(x: Self) -> Self
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.
Examples
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())
}
Runsourcepub const fn from_le(x: Self) -> Self
pub const fn from_le(x: Self) -> Self
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.
Examples
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())
}
Runsourcepub const fn to_be(self) -> Self
pub const fn to_be(self) -> Self
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.
Examples
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())
}
Runsourcepub const fn to_le(self) -> Self
pub const fn to_le(self) -> Self
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.
Examples
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())
}
Runsourcepub fn pow(self, exp: u32) -> Self
pub fn pow(self, exp: u32) -> Self
Raises self to the power of exp
, using exponentiation by squaring.
Examples
Basic usage:
#![feature(wrapping_int_impl)]
use std::num::Wrapping;
assert_eq!(Wrapping(3i64).pow(4), Wrapping(81));
RunResults 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));
Runsourceimpl Wrapping<i128>
impl Wrapping<i128>
sourcepub const fn count_ones(self) -> u32
pub const fn count_ones(self) -> u32
sourcepub const fn count_zeros(self) -> u32
pub const fn count_zeros(self) -> u32
sourcepub const fn trailing_zeros(self) -> u32
pub const fn trailing_zeros(self) -> u32
sourcepub const fn rotate_left(self, n: u32) -> Self
pub const fn rotate_left(self, n: u32) -> Self
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!
Examples
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);
Runsourcepub const fn rotate_right(self, n: u32) -> Self
pub const fn rotate_right(self, n: u32) -> Self
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!
Examples
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);
Runsourcepub const fn swap_bytes(self) -> Self
pub const fn swap_bytes(self) -> Self
Reverses the byte order of the integer.
Examples
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));
Run1.37.0 (const: 1.37.0) · sourcepub const fn reverse_bits(self) -> Self
pub const fn reverse_bits(self) -> Self
Reverses the bit pattern of the integer.
Examples
Please note that this example is shared between integer types.
Which explains why i16
is used here.
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));
Runsourcepub const fn from_be(x: Self) -> Self
pub const fn from_be(x: Self) -> Self
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.
Examples
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())
}
Runsourcepub const fn from_le(x: Self) -> Self
pub const fn from_le(x: Self) -> Self
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.
Examples
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())
}
Runsourcepub const fn to_be(self) -> Self
pub const fn to_be(self) -> Self
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.
Examples
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())
}
Runsourcepub const fn to_le(self) -> Self
pub const fn to_le(self) -> Self
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.
Examples
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())
}
Runsourcepub fn pow(self, exp: u32) -> Self
pub fn pow(self, exp: u32) -> Self
Raises self to the power of exp
, using exponentiation by squaring.
Examples
Basic usage:
#![feature(wrapping_int_impl)]
use std::num::Wrapping;
assert_eq!(Wrapping(3i128).pow(4), Wrapping(81));
RunResults 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));
Runsourceimpl Wrapping<isize>
impl Wrapping<isize>
sourcepub const fn leading_zeros(self) -> u32
pub const fn leading_zeros(self) -> u32
sourcepub fn abs(self) -> Wrapping<isize>
pub fn abs(self) -> Wrapping<isize>
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.
Examples
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);
Runsourcepub fn signum(self) -> Wrapping<isize>
pub fn signum(self) -> Wrapping<isize>
Returns a number representing sign of self
.
0
if the number is zero1
if the number is positive-1
if the number is negative
Examples
Basic 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));
Runsourcepub const fn is_positive(self) -> bool
pub const fn is_positive(self) -> bool
sourcepub const fn is_negative(self) -> bool
pub const fn is_negative(self) -> bool
sourceimpl Wrapping<i8>
impl Wrapping<i8>
sourcepub const fn leading_zeros(self) -> u32
pub const fn leading_zeros(self) -> u32
sourcepub fn abs(self) -> Wrapping<i8>
pub fn abs(self) -> Wrapping<i8>
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.
Examples
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);
Runsourcepub fn signum(self) -> Wrapping<i8>
pub fn signum(self) -> Wrapping<i8>
Returns a number representing sign of self
.
0
if the number is zero1
if the number is positive-1
if the number is negative
Examples
Basic 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));
Runsourcepub const fn is_positive(self) -> bool
pub const fn is_positive(self) -> bool
sourcepub const fn is_negative(self) -> bool
pub const fn is_negative(self) -> bool
sourceimpl Wrapping<i16>
impl Wrapping<i16>
sourcepub const fn leading_zeros(self) -> u32
pub const fn leading_zeros(self) -> u32
sourcepub fn abs(self) -> Wrapping<i16>
pub fn abs(self) -> Wrapping<i16>
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.
Examples
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);
Runsourcepub fn signum(self) -> Wrapping<i16>
pub fn signum(self) -> Wrapping<i16>
Returns a number representing sign of self
.
0
if the number is zero1
if the number is positive-1
if the number is negative
Examples
Basic 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));
Runsourcepub const fn is_positive(self) -> bool
pub const fn is_positive(self) -> bool
sourcepub const fn is_negative(self) -> bool
pub const fn is_negative(self) -> bool
sourceimpl Wrapping<i32>
impl Wrapping<i32>
sourcepub const fn leading_zeros(self) -> u32
pub const fn leading_zeros(self) -> u32
sourcepub fn abs(self) -> Wrapping<i32>
pub fn abs(self) -> Wrapping<i32>
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.
Examples
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);
Runsourcepub fn signum(self) -> Wrapping<i32>
pub fn signum(self) -> Wrapping<i32>
Returns a number representing sign of self
.
0
if the number is zero1
if the number is positive-1
if the number is negative
Examples
Basic 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));
Runsourcepub const fn is_positive(self) -> bool
pub const fn is_positive(self) -> bool
sourcepub const fn is_negative(self) -> bool
pub const fn is_negative(self) -> bool
sourceimpl Wrapping<i64>
impl Wrapping<i64>
sourcepub const fn leading_zeros(self) -> u32
pub const fn leading_zeros(self) -> u32
sourcepub fn abs(self) -> Wrapping<i64>
pub fn abs(self) -> Wrapping<i64>
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.
Examples
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);
Runsourcepub fn signum(self) -> Wrapping<i64>
pub fn signum(self) -> Wrapping<i64>
Returns a number representing sign of self
.
0
if the number is zero1
if the number is positive-1
if the number is negative
Examples
Basic 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));
Runsourcepub const fn is_positive(self) -> bool
pub const fn is_positive(self) -> bool
sourcepub const fn is_negative(self) -> bool
pub const fn is_negative(self) -> bool
sourceimpl Wrapping<i128>
impl Wrapping<i128>
sourcepub const fn leading_zeros(self) -> u32
pub const fn leading_zeros(self) -> u32
sourcepub fn abs(self) -> Wrapping<i128>
pub fn abs(self) -> Wrapping<i128>
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.
Examples
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);
Runsourcepub fn signum(self) -> Wrapping<i128>
pub fn signum(self) -> Wrapping<i128>
Returns a number representing sign of self
.
0
if the number is zero1
if the number is positive-1
if the number is negative
Examples
Basic 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));
Runsourcepub const fn is_positive(self) -> bool
pub const fn is_positive(self) -> bool
sourcepub const fn is_negative(self) -> bool
pub const fn is_negative(self) -> bool
sourceimpl Wrapping<usize>
impl Wrapping<usize>
sourcepub const fn leading_zeros(self) -> u32
pub const fn leading_zeros(self) -> u32
sourcepub fn is_power_of_two(self) -> bool
pub fn is_power_of_two(self) -> bool
sourcepub fn next_power_of_two(self) -> Self
pub fn next_power_of_two(self) -> Self
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
.
Examples
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));
Runsourceimpl Wrapping<u8>
impl Wrapping<u8>
sourcepub const fn leading_zeros(self) -> u32
pub const fn leading_zeros(self) -> u32
sourcepub fn is_power_of_two(self) -> bool
pub fn is_power_of_two(self) -> bool
sourcepub fn next_power_of_two(self) -> Self
pub fn next_power_of_two(self) -> Self
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
.
Examples
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));
Runsourceimpl Wrapping<u16>
impl Wrapping<u16>
sourcepub const fn leading_zeros(self) -> u32
pub const fn leading_zeros(self) -> u32
sourcepub fn is_power_of_two(self) -> bool
pub fn is_power_of_two(self) -> bool
sourcepub fn next_power_of_two(self) -> Self
pub fn next_power_of_two(self) -> Self
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
.
Examples
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));
Runsourceimpl Wrapping<u32>
impl Wrapping<u32>
sourcepub const fn leading_zeros(self) -> u32
pub const fn leading_zeros(self) -> u32
sourcepub fn is_power_of_two(self) -> bool
pub fn is_power_of_two(self) -> bool
sourcepub fn next_power_of_two(self) -> Self
pub fn next_power_of_two(self) -> Self
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
.
Examples
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));
Runsourceimpl Wrapping<u64>
impl Wrapping<u64>
sourcepub const fn leading_zeros(self) -> u32
pub const fn leading_zeros(self) -> u32
sourcepub fn is_power_of_two(self) -> bool
pub fn is_power_of_two(self) -> bool
sourcepub fn next_power_of_two(self) -> Self
pub fn next_power_of_two(self) -> Self
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
.
Examples
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));
Runsourceimpl Wrapping<u128>
impl Wrapping<u128>
sourcepub const fn leading_zeros(self) -> u32
pub const fn leading_zeros(self) -> u32
sourcepub fn is_power_of_two(self) -> bool
pub fn is_power_of_two(self) -> bool
sourcepub fn next_power_of_two(self) -> Self
pub fn next_power_of_two(self) -> Self
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
.
Examples
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));
RunTrait Implementations
1.22.0 (const: unstable) · sourceimpl AddAssign<&'_ i128> for Wrapping<i128>
impl AddAssign<&'_ i128> for Wrapping<i128>
const: unstable · sourcefn add_assign(&mut self, other: &i128)
fn add_assign(&mut self, other: &i128)
Performs the +=
operation. Read more
1.22.0 (const: unstable) · sourceimpl AddAssign<&'_ i16> for Wrapping<i16>
impl AddAssign<&'_ i16> for Wrapping<i16>
const: unstable · sourcefn add_assign(&mut self, other: &i16)
fn add_assign(&mut self, other: &i16)
Performs the +=
operation. Read more
1.22.0 (const: unstable) · sourceimpl AddAssign<&'_ i32> for Wrapping<i32>
impl AddAssign<&'_ i32> for Wrapping<i32>
const: unstable · sourcefn add_assign(&mut self, other: &i32)
fn add_assign(&mut self, other: &i32)
Performs the +=
operation. Read more
1.22.0 (const: unstable) · sourceimpl AddAssign<&'_ i64> for Wrapping<i64>
impl AddAssign<&'_ i64> for Wrapping<i64>
const: unstable · sourcefn add_assign(&mut self, other: &i64)
fn add_assign(&mut self, other: &i64)
Performs the +=
operation. Read more
1.22.0 (const: unstable) · sourceimpl AddAssign<&'_ i8> for Wrapping<i8>
impl AddAssign<&'_ i8> for Wrapping<i8>
const: unstable · sourcefn add_assign(&mut self, other: &i8)
fn add_assign(&mut self, other: &i8)
Performs the +=
operation. Read more
1.22.0 (const: unstable) · sourceimpl AddAssign<&'_ isize> for Wrapping<isize>
impl AddAssign<&'_ isize> for Wrapping<isize>
const: unstable · sourcefn add_assign(&mut self, other: &isize)
fn add_assign(&mut self, other: &isize)
Performs the +=
operation. Read more
1.22.0 (const: unstable) · sourceimpl AddAssign<&'_ u128> for Wrapping<u128>
impl AddAssign<&'_ u128> for Wrapping<u128>
const: unstable · sourcefn add_assign(&mut self, other: &u128)
fn add_assign(&mut self, other: &u128)
Performs the +=
operation. Read more
1.22.0 (const: unstable) · sourceimpl AddAssign<&'_ u16> for Wrapping<u16>
impl AddAssign<&'_ u16> for Wrapping<u16>
const: unstable · sourcefn add_assign(&mut self, other: &u16)
fn add_assign(&mut self, other: &u16)
Performs the +=
operation. Read more
1.22.0 (const: unstable) · sourceimpl AddAssign<&'_ u32> for Wrapping<u32>
impl AddAssign<&'_ u32> for Wrapping<u32>
const: unstable · sourcefn add_assign(&mut self, other: &u32)
fn add_assign(&mut self, other: &u32)
Performs the +=
operation. Read more
1.22.0 (const: unstable) · sourceimpl AddAssign<&'_ u64> for Wrapping<u64>
impl AddAssign<&'_ u64> for Wrapping<u64>
const: unstable · sourcefn add_assign(&mut self, other: &u64)
fn add_assign(&mut self, other: &u64)
Performs the +=
operation. Read more
1.22.0 (const: unstable) · sourceimpl AddAssign<&'_ u8> for Wrapping<u8>
impl AddAssign<&'_ u8> for Wrapping<u8>
const: unstable · sourcefn add_assign(&mut self, other: &u8)
fn add_assign(&mut self, other: &u8)
Performs the +=
operation. Read more
1.22.0 (const: unstable) · sourceimpl AddAssign<&'_ usize> for Wrapping<usize>
impl AddAssign<&'_ usize> for Wrapping<usize>
const: unstable · sourcefn add_assign(&mut self, other: &usize)
fn add_assign(&mut self, other: &usize)
Performs the +=
operation. Read more
1.60.0 (const: unstable) · sourceimpl AddAssign<i128> for Wrapping<i128>
impl AddAssign<i128> for Wrapping<i128>
const: unstable · sourcefn add_assign(&mut self, other: i128)
fn add_assign(&mut self, other: i128)
Performs the +=
operation. Read more
1.60.0 (const: unstable) · sourceimpl AddAssign<i16> for Wrapping<i16>
impl AddAssign<i16> for Wrapping<i16>
const: unstable · sourcefn add_assign(&mut self, other: i16)
fn add_assign(&mut self, other: i16)
Performs the +=
operation. Read more
1.60.0 (const: unstable) · sourceimpl AddAssign<i32> for Wrapping<i32>
impl AddAssign<i32> for Wrapping<i32>
const: unstable · sourcefn add_assign(&mut self, other: i32)
fn add_assign(&mut self, other: i32)
Performs the +=
operation. Read more
1.60.0 (const: unstable) · sourceimpl AddAssign<i64> for Wrapping<i64>
impl AddAssign<i64> for Wrapping<i64>
const: unstable · sourcefn add_assign(&mut self, other: i64)
fn add_assign(&mut self, other: i64)
Performs the +=
operation. Read more
1.60.0 (const: unstable) · sourceimpl AddAssign<i8> for Wrapping<i8>
impl AddAssign<i8> for Wrapping<i8>
const: unstable · sourcefn add_assign(&mut self, other: i8)
fn add_assign(&mut self, other: i8)
Performs the +=
operation. Read more
1.60.0 (const: unstable) · sourceimpl AddAssign<isize> for Wrapping<isize>
impl AddAssign<isize> for Wrapping<isize>
const: unstable · sourcefn add_assign(&mut self, other: isize)
fn add_assign(&mut self, other: isize)
Performs the +=
operation. Read more
1.60.0 (const: unstable) · sourceimpl AddAssign<u128> for Wrapping<u128>
impl AddAssign<u128> for Wrapping<u128>
const: unstable · sourcefn add_assign(&mut self, other: u128)
fn add_assign(&mut self, other: u128)
Performs the +=
operation. Read more
1.60.0 (const: unstable) · sourceimpl AddAssign<u16> for Wrapping<u16>
impl AddAssign<u16> for Wrapping<u16>
const: unstable · sourcefn add_assign(&mut self, other: u16)
fn add_assign(&mut self, other: u16)
Performs the +=
operation. Read more
1.60.0 (const: unstable) · sourceimpl AddAssign<u32> for Wrapping<u32>
impl AddAssign<u32> for Wrapping<u32>
const: unstable · sourcefn add_assign(&mut self, other: u32)
fn add_assign(&mut self, other: u32)
Performs the +=
operation. Read more
1.60.0 (const: unstable) · sourceimpl AddAssign<u64> for Wrapping<u64>
impl AddAssign<u64> for Wrapping<u64>
const: unstable · sourcefn add_assign(&mut self, other: u64)
fn add_assign(&mut self, other: u64)
Performs the +=
operation. Read more
1.60.0 (const: unstable) · sourceimpl AddAssign<u8> for Wrapping<u8>
impl AddAssign<u8> for Wrapping<u8>
const: unstable · sourcefn add_assign(&mut self, other: u8)
fn add_assign(&mut self, other: u8)
Performs the +=
operation. Read more
1.60.0 (const: unstable) · sourceimpl AddAssign<usize> for Wrapping<usize>
impl AddAssign<usize> for Wrapping<usize>
const: unstable · sourcefn add_assign(&mut self, other: usize)
fn add_assign(&mut self, other: usize)
Performs the +=
operation. Read more
1.22.0 (const: unstable) · sourceimpl BitAndAssign<&'_ i128> for Wrapping<i128>
impl BitAndAssign<&'_ i128> for Wrapping<i128>
const: unstable · sourcefn bitand_assign(&mut self, other: &i128)
fn bitand_assign(&mut self, other: &i128)
Performs the &=
operation. Read more
1.22.0 (const: unstable) · sourceimpl BitAndAssign<&'_ i16> for Wrapping<i16>
impl BitAndAssign<&'_ i16> for Wrapping<i16>
const: unstable · sourcefn bitand_assign(&mut self, other: &i16)
fn bitand_assign(&mut self, other: &i16)
Performs the &=
operation. Read more
1.22.0 (const: unstable) · sourceimpl BitAndAssign<&'_ i32> for Wrapping<i32>
impl BitAndAssign<&'_ i32> for Wrapping<i32>
const: unstable · sourcefn bitand_assign(&mut self, other: &i32)
fn bitand_assign(&mut self, other: &i32)
Performs the &=
operation. Read more
1.22.0 (const: unstable) · sourceimpl BitAndAssign<&'_ i64> for Wrapping<i64>
impl BitAndAssign<&'_ i64> for Wrapping<i64>
const: unstable · sourcefn bitand_assign(&mut self, other: &i64)
fn bitand_assign(&mut self, other: &i64)
Performs the &=
operation. Read more
1.22.0 (const: unstable) · sourceimpl BitAndAssign<&'_ i8> for Wrapping<i8>
impl BitAndAssign<&'_ i8> for Wrapping<i8>
const: unstable · sourcefn bitand_assign(&mut self, other: &i8)
fn bitand_assign(&mut self, other: &i8)
Performs the &=
operation. Read more
1.22.0 (const: unstable) · sourceimpl BitAndAssign<&'_ isize> for Wrapping<isize>
impl BitAndAssign<&'_ isize> for Wrapping<isize>
const: unstable · sourcefn bitand_assign(&mut self, other: &isize)
fn bitand_assign(&mut self, other: &isize)
Performs the &=
operation. Read more
1.22.0 (const: unstable) · sourceimpl BitAndAssign<&'_ u128> for Wrapping<u128>
impl BitAndAssign<&'_ u128> for Wrapping<u128>
const: unstable · sourcefn bitand_assign(&mut self, other: &u128)
fn bitand_assign(&mut self, other: &u128)
Performs the &=
operation. Read more
1.22.0 (const: unstable) · sourceimpl BitAndAssign<&'_ u16> for Wrapping<u16>
impl BitAndAssign<&'_ u16> for Wrapping<u16>
const: unstable · sourcefn bitand_assign(&mut self, other: &u16)
fn bitand_assign(&mut self, other: &u16)
Performs the &=
operation. Read more
1.22.0 (const: unstable) · sourceimpl BitAndAssign<&'_ u32> for Wrapping<u32>
impl BitAndAssign<&'_ u32> for Wrapping<u32>
const: unstable · sourcefn bitand_assign(&mut self, other: &u32)
fn bitand_assign(&mut self, other: &u32)
Performs the &=
operation. Read more
1.22.0 (const: unstable) · sourceimpl BitAndAssign<&'_ u64> for Wrapping<u64>
impl BitAndAssign<&'_ u64> for Wrapping<u64>
const: unstable · sourcefn bitand_assign(&mut self, other: &u64)
fn bitand_assign(&mut self, other: &u64)
Performs the &=
operation. Read more
1.22.0 (const: unstable) · sourceimpl BitAndAssign<&'_ u8> for Wrapping<u8>
impl BitAndAssign<&'_ u8> for Wrapping<u8>
const: unstable · sourcefn bitand_assign(&mut self, other: &u8)
fn bitand_assign(&mut self, other: &u8)
Performs the &=
operation. Read more
1.22.0 (const: unstable) · sourceimpl BitAndAssign<&'_ usize> for Wrapping<usize>
impl BitAndAssign<&'_ usize> for Wrapping<usize>
const: unstable · sourcefn bitand_assign(&mut self, other: &usize)
fn bitand_assign(&mut self, other: &usize)
Performs the &=
operation. Read more
1.60.0 (const: unstable) · sourceimpl BitAndAssign<i128> for Wrapping<i128>
impl BitAndAssign<i128> for Wrapping<i128>
const: unstable · sourcefn bitand_assign(&mut self, other: i128)
fn bitand_assign(&mut self, other: i128)
Performs the &=
operation. Read more
1.60.0 (const: unstable) · sourceimpl BitAndAssign<i16> for Wrapping<i16>
impl BitAndAssign<i16> for Wrapping<i16>
const: unstable · sourcefn bitand_assign(&mut self, other: i16)
fn bitand_assign(&mut self, other: i16)
Performs the &=
operation. Read more
1.60.0 (const: unstable) · sourceimpl BitAndAssign<i32> for Wrapping<i32>
impl BitAndAssign<i32> for Wrapping<i32>
const: unstable · sourcefn bitand_assign(&mut self, other: i32)
fn bitand_assign(&mut self, other: i32)
Performs the &=
operation. Read more
1.60.0 (const: unstable) · sourceimpl BitAndAssign<i64> for Wrapping<i64>
impl BitAndAssign<i64> for Wrapping<i64>
const: unstable · sourcefn bitand_assign(&mut self, other: i64)
fn bitand_assign(&mut self, other: i64)
Performs the &=
operation. Read more
1.60.0 (const: unstable) · sourceimpl BitAndAssign<i8> for Wrapping<i8>
impl BitAndAssign<i8> for Wrapping<i8>
const: unstable · sourcefn bitand_assign(&mut self, other: i8)
fn bitand_assign(&mut self, other: i8)
Performs the &=
operation. Read more
1.60.0 (const: unstable) · sourceimpl BitAndAssign<isize> for Wrapping<isize>
impl BitAndAssign<isize> for Wrapping<isize>
const: unstable · sourcefn bitand_assign(&mut self, other: isize)
fn bitand_assign(&mut self, other: isize)
Performs the &=
operation. Read more
1.60.0 (const: unstable) · sourceimpl BitAndAssign<u128> for Wrapping<u128>
impl BitAndAssign<u128> for Wrapping<u128>
const: unstable · sourcefn bitand_assign(&mut self, other: u128)
fn bitand_assign(&mut self, other: u128)
Performs the &=
operation. Read more
1.60.0 (const: unstable) · sourceimpl BitAndAssign<u16> for Wrapping<u16>
impl BitAndAssign<u16> for Wrapping<u16>
const: unstable · sourcefn bitand_assign(&mut self, other: u16)
fn bitand_assign(&mut self, other: u16)
Performs the &=
operation. Read more
1.60.0 (const: unstable) · sourceimpl BitAndAssign<u32> for Wrapping<u32>
impl BitAndAssign<u32> for Wrapping<u32>
const: unstable · sourcefn bitand_assign(&mut self, other: u32)
fn bitand_assign(&mut self, other: u32)
Performs the &=
operation. Read more
1.60.0 (const: unstable) · sourceimpl BitAndAssign<u64> for Wrapping<u64>
impl BitAndAssign<u64> for Wrapping<u64>
const: unstable · sourcefn bitand_assign(&mut self, other: u64)
fn bitand_assign(&mut self, other: u64)
Performs the &=
operation. Read more
1.60.0 (const: unstable) · sourceimpl BitAndAssign<u8> for Wrapping<u8>
impl BitAndAssign<u8> for Wrapping<u8>
const: unstable · sourcefn bitand_assign(&mut self, other: u8)
fn bitand_assign(&mut self, other: u8)
Performs the &=
operation. Read more
1.60.0 (const: unstable) · sourceimpl BitAndAssign<usize> for Wrapping<usize>
impl BitAndAssign<usize> for Wrapping<usize>
const: unstable · sourcefn bitand_assign(&mut self, other: usize)
fn bitand_assign(&mut self, other: usize)
Performs the &=
operation. Read more
1.22.0 (const: unstable) · sourceimpl BitOrAssign<&'_ i128> for Wrapping<i128>
impl BitOrAssign<&'_ i128> for Wrapping<i128>
const: unstable · sourcefn bitor_assign(&mut self, other: &i128)
fn bitor_assign(&mut self, other: &i128)
Performs the |=
operation. Read more
1.22.0 (const: unstable) · sourceimpl BitOrAssign<&'_ i16> for Wrapping<i16>
impl BitOrAssign<&'_ i16> for Wrapping<i16>
const: unstable · sourcefn bitor_assign(&mut self, other: &i16)
fn bitor_assign(&mut self, other: &i16)
Performs the |=
operation. Read more
1.22.0 (const: unstable) · sourceimpl BitOrAssign<&'_ i32> for Wrapping<i32>
impl BitOrAssign<&'_ i32> for Wrapping<i32>
const: unstable · sourcefn bitor_assign(&mut self, other: &i32)
fn bitor_assign(&mut self, other: &i32)
Performs the |=
operation. Read more
1.22.0 (const: unstable) · sourceimpl BitOrAssign<&'_ i64> for Wrapping<i64>
impl BitOrAssign<&'_ i64> for Wrapping<i64>
const: unstable · sourcefn bitor_assign(&mut self, other: &i64)
fn bitor_assign(&mut self, other: &i64)
Performs the |=
operation. Read more
1.22.0 (const: unstable) · sourceimpl BitOrAssign<&'_ i8> for Wrapping<i8>
impl BitOrAssign<&'_ i8> for Wrapping<i8>
const: unstable · sourcefn bitor_assign(&mut self, other: &i8)
fn bitor_assign(&mut self, other: &i8)
Performs the |=
operation. Read more
1.22.0 (const: unstable) · sourceimpl BitOrAssign<&'_ isize> for Wrapping<isize>
impl BitOrAssign<&'_ isize> for Wrapping<isize>
const: unstable · sourcefn bitor_assign(&mut self, other: &isize)
fn bitor_assign(&mut self, other: &isize)
Performs the |=
operation. Read more
1.22.0 (const: unstable) · sourceimpl BitOrAssign<&'_ u128> for Wrapping<u128>
impl BitOrAssign<&'_ u128> for Wrapping<u128>
const: unstable · sourcefn bitor_assign(&mut self, other: &u128)
fn bitor_assign(&mut self, other: &u128)
Performs the |=
operation. Read more
1.22.0 (const: unstable) · sourceimpl BitOrAssign<&'_ u16> for Wrapping<u16>
impl BitOrAssign<&'_ u16> for Wrapping<u16>
const: unstable · sourcefn bitor_assign(&mut self, other: &u16)
fn bitor_assign(&mut self, other: &u16)
Performs the |=
operation. Read more
1.22.0 (const: unstable) · sourceimpl BitOrAssign<&'_ u32> for Wrapping<u32>
impl BitOrAssign<&'_ u32> for Wrapping<u32>
const: unstable · sourcefn bitor_assign(&mut self, other: &u32)
fn bitor_assign(&mut self, other: &u32)
Performs the |=
operation. Read more
1.22.0 (const: unstable) · sourceimpl BitOrAssign<&'_ u64> for Wrapping<u64>
impl BitOrAssign<&'_ u64> for Wrapping<u64>
const: unstable · sourcefn bitor_assign(&mut self, other: &u64)
fn bitor_assign(&mut self, other: &u64)
Performs the |=
operation. Read more
1.22.0 (const: unstable) · sourceimpl BitOrAssign<&'_ u8> for Wrapping<u8>
impl BitOrAssign<&'_ u8> for Wrapping<u8>
const: unstable · sourcefn bitor_assign(&mut self, other: &u8)
fn bitor_assign(&mut self, other: &u8)
Performs the |=
operation. Read more
1.22.0 (const: unstable) · sourceimpl BitOrAssign<&'_ usize> for Wrapping<usize>
impl BitOrAssign<&'_ usize> for Wrapping<usize>
const: unstable · sourcefn bitor_assign(&mut self, other: &usize)
fn bitor_assign(&mut self, other: &usize)
Performs the |=
operation. Read more
1.60.0 (const: unstable) · sourceimpl BitOrAssign<i128> for Wrapping<i128>
impl BitOrAssign<i128> for Wrapping<i128>
const: unstable · sourcefn bitor_assign(&mut self, other: i128)
fn bitor_assign(&mut self, other: i128)
Performs the |=
operation. Read more
1.60.0 (const: unstable) · sourceimpl BitOrAssign<i16> for Wrapping<i16>
impl BitOrAssign<i16> for Wrapping<i16>
const: unstable · sourcefn bitor_assign(&mut self, other: i16)
fn bitor_assign(&mut self, other: i16)
Performs the |=
operation. Read more
1.60.0 (const: unstable) · sourceimpl BitOrAssign<i32> for Wrapping<i32>
impl BitOrAssign<i32> for Wrapping<i32>
const: unstable · sourcefn bitor_assign(&mut self, other: i32)
fn bitor_assign(&mut self, other: i32)
Performs the |=
operation. Read more
1.60.0 (const: unstable) · sourceimpl BitOrAssign<i64> for Wrapping<i64>
impl BitOrAssign<i64> for Wrapping<i64>
const: unstable · sourcefn bitor_assign(&mut self, other: i64)
fn bitor_assign(&mut self, other: i64)
Performs the |=
operation. Read more
1.60.0 (const: unstable) · sourceimpl BitOrAssign<i8> for Wrapping<i8>
impl BitOrAssign<i8> for Wrapping<i8>
const: unstable · sourcefn bitor_assign(&mut self, other: i8)
fn bitor_assign(&mut self, other: i8)
Performs the |=
operation. Read more
1.60.0 (const: unstable) · sourceimpl BitOrAssign<isize> for Wrapping<isize>
impl BitOrAssign<isize> for Wrapping<isize>
const: unstable · sourcefn bitor_assign(&mut self, other: isize)
fn bitor_assign(&mut self, other: isize)
Performs the |=
operation. Read more
1.60.0 (const: unstable) · sourceimpl BitOrAssign<u128> for Wrapping<u128>
impl BitOrAssign<u128> for Wrapping<u128>
const: unstable · sourcefn bitor_assign(&mut self, other: u128)
fn bitor_assign(&mut self, other: u128)
Performs the |=
operation. Read more
1.60.0 (const: unstable) · sourceimpl BitOrAssign<u16> for Wrapping<u16>
impl BitOrAssign<u16> for Wrapping<u16>
const: unstable · sourcefn bitor_assign(&mut self, other: u16)
fn bitor_assign(&mut self, other: u16)
Performs the |=
operation. Read more
1.60.0 (const: unstable) · sourceimpl BitOrAssign<u32> for Wrapping<u32>
impl BitOrAssign<u32> for Wrapping<u32>
const: unstable · sourcefn bitor_assign(&mut self, other: u32)
fn bitor_assign(&mut self, other: u32)
Performs the |=
operation. Read more
1.60.0 (const: unstable) · sourceimpl BitOrAssign<u64> for Wrapping<u64>
impl BitOrAssign<u64> for Wrapping<u64>
const: unstable · sourcefn bitor_assign(&mut self, other: u64)
fn bitor_assign(&mut self, other: u64)
Performs the |=
operation. Read more
1.60.0 (const: unstable) · sourceimpl BitOrAssign<u8> for Wrapping<u8>
impl BitOrAssign<u8> for Wrapping<u8>
const: unstable · sourcefn bitor_assign(&mut self, other: u8)
fn bitor_assign(&mut self, other: u8)
Performs the |=
operation. Read more
1.60.0 (const: unstable) · sourceimpl BitOrAssign<usize> for Wrapping<usize>
impl BitOrAssign<usize> for Wrapping<usize>
const: unstable · sourcefn bitor_assign(&mut self, other: usize)
fn bitor_assign(&mut self, other: usize)
Performs the |=
operation. Read more
1.22.0 (const: unstable) · sourceimpl BitXorAssign<&'_ i128> for Wrapping<i128>
impl BitXorAssign<&'_ i128> for Wrapping<i128>
const: unstable · sourcefn bitxor_assign(&mut self, other: &i128)
fn bitxor_assign(&mut self, other: &i128)
Performs the ^=
operation. Read more
1.22.0 (const: unstable) · sourceimpl BitXorAssign<&'_ i16> for Wrapping<i16>
impl BitXorAssign<&'_ i16> for Wrapping<i16>
const: unstable · sourcefn bitxor_assign(&mut self, other: &i16)
fn bitxor_assign(&mut self, other: &i16)
Performs the ^=
operation. Read more
1.22.0 (const: unstable) · sourceimpl BitXorAssign<&'_ i32> for Wrapping<i32>
impl BitXorAssign<&'_ i32> for Wrapping<i32>
const: unstable · sourcefn bitxor_assign(&mut self, other: &i32)
fn bitxor_assign(&mut self, other: &i32)
Performs the ^=
operation. Read more
1.22.0 (const: unstable) · sourceimpl BitXorAssign<&'_ i64> for Wrapping<i64>
impl BitXorAssign<&'_ i64> for Wrapping<i64>
const: unstable · sourcefn bitxor_assign(&mut self, other: &i64)
fn bitxor_assign(&mut self, other: &i64)
Performs the ^=
operation. Read more
1.22.0 (const: unstable) · sourceimpl BitXorAssign<&'_ i8> for Wrapping<i8>
impl BitXorAssign<&'_ i8> for Wrapping<i8>
const: unstable · sourcefn bitxor_assign(&mut self, other: &i8)
fn bitxor_assign(&mut self, other: &i8)
Performs the ^=
operation. Read more
1.22.0 (const: unstable) · sourceimpl BitXorAssign<&'_ isize> for Wrapping<isize>
impl BitXorAssign<&'_ isize> for Wrapping<isize>
const: unstable · sourcefn bitxor_assign(&mut self, other: &isize)
fn bitxor_assign(&mut self, other: &isize)
Performs the ^=
operation. Read more
1.22.0 (const: unstable) · sourceimpl BitXorAssign<&'_ u128> for Wrapping<u128>
impl BitXorAssign<&'_ u128> for Wrapping<u128>
const: unstable · sourcefn bitxor_assign(&mut self, other: &u128)
fn bitxor_assign(&mut self, other: &u128)
Performs the ^=
operation. Read more
1.22.0 (const: unstable) · sourceimpl BitXorAssign<&'_ u16> for Wrapping<u16>
impl BitXorAssign<&'_ u16> for Wrapping<u16>
const: unstable · sourcefn bitxor_assign(&mut self, other: &u16)
fn bitxor_assign(&mut self, other: &u16)
Performs the ^=
operation. Read more
1.22.0 (const: unstable) · sourceimpl BitXorAssign<&'_ u32> for Wrapping<u32>
impl BitXorAssign<&'_ u32> for Wrapping<u32>
const: unstable · sourcefn bitxor_assign(&mut self, other: &u32)
fn bitxor_assign(&mut self, other: &u32)
Performs the ^=
operation. Read more
1.22.0 (const: unstable) · sourceimpl BitXorAssign<&'_ u64> for Wrapping<u64>
impl BitXorAssign<&'_ u64> for Wrapping<u64>
const: unstable · sourcefn bitxor_assign(&mut self, other: &u64)
fn bitxor_assign(&mut self, other: &u64)
Performs the ^=
operation. Read more
1.22.0 (const: unstable) · sourceimpl BitXorAssign<&'_ u8> for Wrapping<u8>
impl BitXorAssign<&'_ u8> for Wrapping<u8>
const: unstable · sourcefn bitxor_assign(&mut self, other: &u8)
fn bitxor_assign(&mut self, other: &u8)
Performs the ^=
operation. Read more
1.22.0 (const: unstable) · sourceimpl BitXorAssign<&'_ usize> for Wrapping<usize>
impl BitXorAssign<&'_ usize> for Wrapping<usize>
const: unstable · sourcefn bitxor_assign(&mut self, other: &usize)
fn bitxor_assign(&mut self, other: &usize)
Performs the ^=
operation. Read more
1.60.0 (const: unstable) · sourceimpl BitXorAssign<i128> for Wrapping<i128>
impl BitXorAssign<i128> for Wrapping<i128>
const: unstable · sourcefn bitxor_assign(&mut self, other: i128)
fn bitxor_assign(&mut self, other: i128)
Performs the ^=
operation. Read more
1.60.0 (const: unstable) · sourceimpl BitXorAssign<i16> for Wrapping<i16>
impl BitXorAssign<i16> for Wrapping<i16>
const: unstable · sourcefn bitxor_assign(&mut self, other: i16)
fn bitxor_assign(&mut self, other: i16)
Performs the ^=
operation. Read more
1.60.0 (const: unstable) · sourceimpl BitXorAssign<i32> for Wrapping<i32>
impl BitXorAssign<i32> for Wrapping<i32>
const: unstable · sourcefn bitxor_assign(&mut self, other: i32)
fn bitxor_assign(&mut self, other: i32)
Performs the ^=
operation. Read more
1.60.0 (const: unstable) · sourceimpl BitXorAssign<i64> for Wrapping<i64>
impl BitXorAssign<i64> for Wrapping<i64>
const: unstable · sourcefn bitxor_assign(&mut self, other: i64)
fn bitxor_assign(&mut self, other: i64)
Performs the ^=
operation. Read more
1.60.0 (const: unstable) · sourceimpl BitXorAssign<i8> for Wrapping<i8>
impl BitXorAssign<i8> for Wrapping<i8>
const: unstable · sourcefn bitxor_assign(&mut self, other: i8)
fn bitxor_assign(&mut self, other: i8)
Performs the ^=
operation. Read more
1.60.0 (const: unstable) · sourceimpl BitXorAssign<isize> for Wrapping<isize>
impl BitXorAssign<isize> for Wrapping<isize>
const: unstable · sourcefn bitxor_assign(&mut self, other: isize)
fn bitxor_assign(&mut self, other: isize)
Performs the ^=
operation. Read more
1.60.0 (const: unstable) · sourceimpl BitXorAssign<u128> for Wrapping<u128>
impl BitXorAssign<u128> for Wrapping<u128>
const: unstable · sourcefn bitxor_assign(&mut self, other: u128)
fn bitxor_assign(&mut self, other: u128)
Performs the ^=
operation. Read more
1.60.0 (const: unstable) · sourceimpl BitXorAssign<u16> for Wrapping<u16>
impl BitXorAssign<u16> for Wrapping<u16>
const: unstable · sourcefn bitxor_assign(&mut self, other: u16)
fn bitxor_assign(&mut self, other: u16)
Performs the ^=
operation. Read more
1.60.0 (const: unstable) · sourceimpl BitXorAssign<u32> for Wrapping<u32>
impl BitXorAssign<u32> for Wrapping<u32>
const: unstable · sourcefn bitxor_assign(&mut self, other: u32)
fn bitxor_assign(&mut self, other: u32)
Performs the ^=
operation. Read more
1.60.0 (const: unstable) · sourceimpl BitXorAssign<u64> for Wrapping<u64>
impl BitXorAssign<u64> for Wrapping<u64>
const: unstable · sourcefn bitxor_assign(&mut self, other: u64)
fn bitxor_assign(&mut self, other: u64)
Performs the ^=
operation. Read more
1.60.0 (const: unstable) · sourceimpl BitXorAssign<u8> for Wrapping<u8>
impl BitXorAssign<u8> for Wrapping<u8>
const: unstable · sourcefn bitxor_assign(&mut self, other: u8)
fn bitxor_assign(&mut self, other: u8)
Performs the ^=
operation. Read more
1.60.0 (const: unstable) · sourceimpl BitXorAssign<usize> for Wrapping<usize>
impl BitXorAssign<usize> for Wrapping<usize>
const: unstable · sourcefn bitxor_assign(&mut self, other: usize)
fn bitxor_assign(&mut self, other: usize)
Performs the ^=
operation. Read more
1.22.0 (const: unstable) · sourceimpl DivAssign<&'_ i128> for Wrapping<i128>
impl DivAssign<&'_ i128> for Wrapping<i128>
const: unstable · sourcefn div_assign(&mut self, other: &i128)
fn div_assign(&mut self, other: &i128)
Performs the /=
operation. Read more
1.22.0 (const: unstable) · sourceimpl DivAssign<&'_ i16> for Wrapping<i16>
impl DivAssign<&'_ i16> for Wrapping<i16>
const: unstable · sourcefn div_assign(&mut self, other: &i16)
fn div_assign(&mut self, other: &i16)
Performs the /=
operation. Read more
1.22.0 (const: unstable) · sourceimpl DivAssign<&'_ i32> for Wrapping<i32>
impl DivAssign<&'_ i32> for Wrapping<i32>
const: unstable · sourcefn div_assign(&mut self, other: &i32)
fn div_assign(&mut self, other: &i32)
Performs the /=
operation. Read more
1.22.0 (const: unstable) · sourceimpl DivAssign<&'_ i64> for Wrapping<i64>
impl DivAssign<&'_ i64> for Wrapping<i64>
const: unstable · sourcefn div_assign(&mut self, other: &i64)
fn div_assign(&mut self, other: &i64)
Performs the /=
operation. Read more
1.22.0 (const: unstable) · sourceimpl DivAssign<&'_ i8> for Wrapping<i8>
impl DivAssign<&'_ i8> for Wrapping<i8>
const: unstable · sourcefn div_assign(&mut self, other: &i8)
fn div_assign(&mut self, other: &i8)
Performs the /=
operation. Read more
1.22.0 (const: unstable) · sourceimpl DivAssign<&'_ isize> for Wrapping<isize>
impl DivAssign<&'_ isize> for Wrapping<isize>
const: unstable · sourcefn div_assign(&mut self, other: &isize)
fn div_assign(&mut self, other: &isize)
Performs the /=
operation. Read more
1.22.0 (const: unstable) · sourceimpl DivAssign<&'_ u128> for Wrapping<u128>
impl DivAssign<&'_ u128> for Wrapping<u128>
const: unstable · sourcefn div_assign(&mut self, other: &u128)
fn div_assign(&mut self, other: &u128)
Performs the /=
operation. Read more
1.22.0 (const: unstable) · sourceimpl DivAssign<&'_ u16> for Wrapping<u16>
impl DivAssign<&'_ u16> for Wrapping<u16>
const: unstable · sourcefn div_assign(&mut self, other: &u16)
fn div_assign(&mut self, other: &u16)
Performs the /=
operation. Read more
1.22.0 (const: unstable) · sourceimpl DivAssign<&'_ u32> for Wrapping<u32>
impl DivAssign<&'_ u32> for Wrapping<u32>
const: unstable · sourcefn div_assign(&mut self, other: &u32)
fn div_assign(&mut self, other: &u32)
Performs the /=
operation. Read more
1.22.0 (const: unstable) · sourceimpl DivAssign<&'_ u64> for Wrapping<u64>
impl DivAssign<&'_ u64> for Wrapping<u64>
const: unstable · sourcefn div_assign(&mut self, other: &u64)
fn div_assign(&mut self, other: &u64)
Performs the /=
operation. Read more
1.22.0 (const: unstable) · sourceimpl DivAssign<&'_ u8> for Wrapping<u8>
impl DivAssign<&'_ u8> for Wrapping<u8>
const: unstable · sourcefn div_assign(&mut self, other: &u8)
fn div_assign(&mut self, other: &u8)
Performs the /=
operation. Read more
1.22.0 (const: unstable) · sourceimpl DivAssign<&'_ usize> for Wrapping<usize>
impl DivAssign<&'_ usize> for Wrapping<usize>
const: unstable · sourcefn div_assign(&mut self, other: &usize)
fn div_assign(&mut self, other: &usize)
Performs the /=
operation. Read more
1.60.0 (const: unstable) · sourceimpl DivAssign<i128> for Wrapping<i128>
impl DivAssign<i128> for Wrapping<i128>
const: unstable · sourcefn div_assign(&mut self, other: i128)
fn div_assign(&mut self, other: i128)
Performs the /=
operation. Read more
1.60.0 (const: unstable) · sourceimpl DivAssign<i16> for Wrapping<i16>
impl DivAssign<i16> for Wrapping<i16>
const: unstable · sourcefn div_assign(&mut self, other: i16)
fn div_assign(&mut self, other: i16)
Performs the /=
operation. Read more
1.60.0 (const: unstable) · sourceimpl DivAssign<i32> for Wrapping<i32>
impl DivAssign<i32> for Wrapping<i32>
const: unstable · sourcefn div_assign(&mut self, other: i32)
fn div_assign(&mut self, other: i32)
Performs the /=
operation. Read more
1.60.0 (const: unstable) · sourceimpl DivAssign<i64> for Wrapping<i64>
impl DivAssign<i64> for Wrapping<i64>
const: unstable · sourcefn div_assign(&mut self, other: i64)
fn div_assign(&mut self, other: i64)
Performs the /=
operation. Read more
1.60.0 (const: unstable) · sourceimpl DivAssign<i8> for Wrapping<i8>
impl DivAssign<i8> for Wrapping<i8>
const: unstable · sourcefn div_assign(&mut self, other: i8)
fn div_assign(&mut self, other: i8)
Performs the /=
operation. Read more
1.60.0 (const: unstable) · sourceimpl DivAssign<isize> for Wrapping<isize>
impl DivAssign<isize> for Wrapping<isize>
const: unstable · sourcefn div_assign(&mut self, other: isize)
fn div_assign(&mut self, other: isize)
Performs the /=
operation. Read more
1.60.0 (const: unstable) · sourceimpl DivAssign<u128> for Wrapping<u128>
impl DivAssign<u128> for Wrapping<u128>
const: unstable · sourcefn div_assign(&mut self, other: u128)
fn div_assign(&mut self, other: u128)
Performs the /=
operation. Read more
1.60.0 (const: unstable) · sourceimpl DivAssign<u16> for Wrapping<u16>
impl DivAssign<u16> for Wrapping<u16>
const: unstable · sourcefn div_assign(&mut self, other: u16)
fn div_assign(&mut self, other: u16)
Performs the /=
operation. Read more
1.60.0 (const: unstable) · sourceimpl DivAssign<u32> for Wrapping<u32>
impl DivAssign<u32> for Wrapping<u32>
const: unstable · sourcefn div_assign(&mut self, other: u32)
fn div_assign(&mut self, other: u32)
Performs the /=
operation. Read more
1.60.0 (const: unstable) · sourceimpl DivAssign<u64> for Wrapping<u64>
impl DivAssign<u64> for Wrapping<u64>
const: unstable · sourcefn div_assign(&mut self, other: u64)
fn div_assign(&mut self, other: u64)
Performs the /=
operation. Read more
1.60.0 (const: unstable) · sourceimpl DivAssign<u8> for Wrapping<u8>
impl DivAssign<u8> for Wrapping<u8>
const: unstable · sourcefn div_assign(&mut self, other: u8)
fn div_assign(&mut self, other: u8)
Performs the /=
operation. Read more
1.60.0 (const: unstable) · sourceimpl DivAssign<usize> for Wrapping<usize>
impl DivAssign<usize> for Wrapping<usize>
const: unstable · sourcefn div_assign(&mut self, other: usize)
fn div_assign(&mut self, other: usize)
Performs the /=
operation. Read more
1.22.0 (const: unstable) · sourceimpl MulAssign<&'_ i128> for Wrapping<i128>
impl MulAssign<&'_ i128> for Wrapping<i128>
const: unstable · sourcefn mul_assign(&mut self, other: &i128)
fn mul_assign(&mut self, other: &i128)
Performs the *=
operation. Read more
1.22.0 (const: unstable) · sourceimpl MulAssign<&'_ i16> for Wrapping<i16>
impl MulAssign<&'_ i16> for Wrapping<i16>
const: unstable · sourcefn mul_assign(&mut self, other: &i16)
fn mul_assign(&mut self, other: &i16)
Performs the *=
operation. Read more
1.22.0 (const: unstable) · sourceimpl MulAssign<&'_ i32> for Wrapping<i32>
impl MulAssign<&'_ i32> for Wrapping<i32>
const: unstable · sourcefn mul_assign(&mut self, other: &i32)
fn mul_assign(&mut self, other: &i32)
Performs the *=
operation. Read more
1.22.0 (const: unstable) · sourceimpl MulAssign<&'_ i64> for Wrapping<i64>
impl MulAssign<&'_ i64> for Wrapping<i64>
const: unstable · sourcefn mul_assign(&mut self, other: &i64)
fn mul_assign(&mut self, other: &i64)
Performs the *=
operation. Read more
1.22.0 (const: unstable) · sourceimpl MulAssign<&'_ i8> for Wrapping<i8>
impl MulAssign<&'_ i8> for Wrapping<i8>
const: unstable · sourcefn mul_assign(&mut self, other: &i8)
fn mul_assign(&mut self, other: &i8)
Performs the *=
operation. Read more
1.22.0 (const: unstable) · sourceimpl MulAssign<&'_ isize> for Wrapping<isize>
impl MulAssign<&'_ isize> for Wrapping<isize>
const: unstable · sourcefn mul_assign(&mut self, other: &isize)
fn mul_assign(&mut self, other: &isize)
Performs the *=
operation. Read more
1.22.0 (const: unstable) · sourceimpl MulAssign<&'_ u128> for Wrapping<u128>
impl MulAssign<&'_ u128> for Wrapping<u128>
const: unstable · sourcefn mul_assign(&mut self, other: &u128)
fn mul_assign(&mut self, other: &u128)
Performs the *=
operation. Read more
1.22.0 (const: unstable) · sourceimpl MulAssign<&'_ u16> for Wrapping<u16>
impl MulAssign<&'_ u16> for Wrapping<u16>
const: unstable · sourcefn mul_assign(&mut self, other: &u16)
fn mul_assign(&mut self, other: &u16)
Performs the *=
operation. Read more
1.22.0 (const: unstable) · sourceimpl MulAssign<&'_ u32> for Wrapping<u32>
impl MulAssign<&'_ u32> for Wrapping<u32>
const: unstable · sourcefn mul_assign(&mut self, other: &u32)
fn mul_assign(&mut self, other: &u32)
Performs the *=
operation. Read more
1.22.0 (const: unstable) · sourceimpl MulAssign<&'_ u64> for Wrapping<u64>
impl MulAssign<&'_ u64> for Wrapping<u64>
const: unstable · sourcefn mul_assign(&mut self, other: &u64)
fn mul_assign(&mut self, other: &u64)
Performs the *=
operation. Read more
1.22.0 (const: unstable) · sourceimpl MulAssign<&'_ u8> for Wrapping<u8>
impl MulAssign<&'_ u8> for Wrapping<u8>
const: unstable · sourcefn mul_assign(&mut self, other: &u8)
fn mul_assign(&mut self, other: &u8)
Performs the *=
operation. Read more
1.22.0 (const: unstable) · sourceimpl MulAssign<&'_ usize> for Wrapping<usize>
impl MulAssign<&'_ usize> for Wrapping<usize>
const: unstable · sourcefn mul_assign(&mut self, other: &usize)
fn mul_assign(&mut self, other: &usize)
Performs the *=
operation. Read more
1.60.0 (const: unstable) · sourceimpl MulAssign<i128> for Wrapping<i128>
impl MulAssign<i128> for Wrapping<i128>
const: unstable · sourcefn mul_assign(&mut self, other: i128)
fn mul_assign(&mut self, other: i128)
Performs the *=
operation. Read more
1.60.0 (const: unstable) · sourceimpl MulAssign<i16> for Wrapping<i16>
impl MulAssign<i16> for Wrapping<i16>
const: unstable · sourcefn mul_assign(&mut self, other: i16)
fn mul_assign(&mut self, other: i16)
Performs the *=
operation. Read more
1.60.0 (const: unstable) · sourceimpl MulAssign<i32> for Wrapping<i32>
impl MulAssign<i32> for Wrapping<i32>
const: unstable · sourcefn mul_assign(&mut self, other: i32)
fn mul_assign(&mut self, other: i32)
Performs the *=
operation. Read more
1.60.0 (const: unstable) · sourceimpl MulAssign<i64> for Wrapping<i64>
impl MulAssign<i64> for Wrapping<i64>
const: unstable · sourcefn mul_assign(&mut self, other: i64)
fn mul_assign(&mut self, other: i64)
Performs the *=
operation. Read more
1.60.0 (const: unstable) · sourceimpl MulAssign<i8> for Wrapping<i8>
impl MulAssign<i8> for Wrapping<i8>
const: unstable · sourcefn mul_assign(&mut self, other: i8)
fn mul_assign(&mut self, other: i8)
Performs the *=
operation. Read more
1.60.0 (const: unstable) · sourceimpl MulAssign<isize> for Wrapping<isize>
impl MulAssign<isize> for Wrapping<isize>
const: unstable · sourcefn mul_assign(&mut self, other: isize)
fn mul_assign(&mut self, other: isize)
Performs the *=
operation. Read more
1.60.0 (const: unstable) · sourceimpl MulAssign<u128> for Wrapping<u128>
impl MulAssign<u128> for Wrapping<u128>
const: unstable · sourcefn mul_assign(&mut self, other: u128)
fn mul_assign(&mut self, other: u128)
Performs the *=
operation. Read more
1.60.0 (const: unstable) · sourceimpl MulAssign<u16> for Wrapping<u16>
impl MulAssign<u16> for Wrapping<u16>
const: unstable · sourcefn mul_assign(&mut self, other: u16)
fn mul_assign(&mut self, other: u16)
Performs the *=
operation. Read more
1.60.0 (const: unstable) · sourceimpl MulAssign<u32> for Wrapping<u32>
impl MulAssign<u32> for Wrapping<u32>
const: unstable · sourcefn mul_assign(&mut self, other: u32)
fn mul_assign(&mut self, other: u32)
Performs the *=
operation. Read more
1.60.0 (const: unstable) · sourceimpl MulAssign<u64> for Wrapping<u64>
impl MulAssign<u64> for Wrapping<u64>
const: unstable · sourcefn mul_assign(&mut self, other: u64)
fn mul_assign(&mut self, other: u64)
Performs the *=
operation. Read more
1.60.0 (const: unstable) · sourceimpl MulAssign<u8> for Wrapping<u8>
impl MulAssign<u8> for Wrapping<u8>
const: unstable · sourcefn mul_assign(&mut self, other: u8)
fn mul_assign(&mut self, other: u8)
Performs the *=
operation. Read more
1.60.0 (const: unstable) · sourceimpl MulAssign<usize> for Wrapping<usize>
impl MulAssign<usize> for Wrapping<usize>
const: unstable · sourcefn mul_assign(&mut self, other: usize)
fn mul_assign(&mut self, other: usize)
Performs the *=
operation. Read more
sourceimpl<T: Ord> Ord for Wrapping<T>
impl<T: Ord> Ord for Wrapping<T>
1.21.0 · sourcefn max(self, other: Self) -> Self where
Self: Sized,
fn max(self, other: Self) -> Self where
Self: Sized,
Compares and returns the maximum of two values. Read more
sourceimpl<T: PartialOrd> PartialOrd<Wrapping<T>> for Wrapping<T>
impl<T: PartialOrd> PartialOrd<Wrapping<T>> for Wrapping<T>
sourcefn partial_cmp(&self, other: &Wrapping<T>) -> Option<Ordering>
fn partial_cmp(&self, other: &Wrapping<T>) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
1.22.0 (const: unstable) · sourceimpl RemAssign<&'_ i128> for Wrapping<i128>
impl RemAssign<&'_ i128> for Wrapping<i128>
const: unstable · sourcefn rem_assign(&mut self, other: &i128)
fn rem_assign(&mut self, other: &i128)
Performs the %=
operation. Read more
1.22.0 (const: unstable) · sourceimpl RemAssign<&'_ i16> for Wrapping<i16>
impl RemAssign<&'_ i16> for Wrapping<i16>
const: unstable · sourcefn rem_assign(&mut self, other: &i16)
fn rem_assign(&mut self, other: &i16)
Performs the %=
operation. Read more
1.22.0 (const: unstable) · sourceimpl RemAssign<&'_ i32> for Wrapping<i32>
impl RemAssign<&'_ i32> for Wrapping<i32>
const: unstable · sourcefn rem_assign(&mut self, other: &i32)
fn rem_assign(&mut self, other: &i32)
Performs the %=
operation. Read more
1.22.0 (const: unstable) · sourceimpl RemAssign<&'_ i64> for Wrapping<i64>
impl RemAssign<&'_ i64> for Wrapping<i64>
const: unstable · sourcefn rem_assign(&mut self, other: &i64)
fn rem_assign(&mut self, other: &i64)
Performs the %=
operation. Read more
1.22.0 (const: unstable) · sourceimpl RemAssign<&'_ i8> for Wrapping<i8>
impl RemAssign<&'_ i8> for Wrapping<i8>
const: unstable · sourcefn rem_assign(&mut self, other: &i8)
fn rem_assign(&mut self, other: &i8)
Performs the %=
operation. Read more
1.22.0 (const: unstable) · sourceimpl RemAssign<&'_ isize> for Wrapping<isize>
impl RemAssign<&'_ isize> for Wrapping<isize>
const: unstable · sourcefn rem_assign(&mut self, other: &isize)
fn rem_assign(&mut self, other: &isize)
Performs the %=
operation. Read more
1.22.0 (const: unstable) · sourceimpl RemAssign<&'_ u128> for Wrapping<u128>
impl RemAssign<&'_ u128> for Wrapping<u128>
const: unstable · sourcefn rem_assign(&mut self, other: &u128)
fn rem_assign(&mut self, other: &u128)
Performs the %=
operation. Read more
1.22.0 (const: unstable) · sourceimpl RemAssign<&'_ u16> for Wrapping<u16>
impl RemAssign<&'_ u16> for Wrapping<u16>
const: unstable · sourcefn rem_assign(&mut self, other: &u16)
fn rem_assign(&mut self, other: &u16)
Performs the %=
operation. Read more
1.22.0 (const: unstable) · sourceimpl RemAssign<&'_ u32> for Wrapping<u32>
impl RemAssign<&'_ u32> for Wrapping<u32>
const: unstable · sourcefn rem_assign(&mut self, other: &u32)
fn rem_assign(&mut self, other: &u32)
Performs the %=
operation. Read more
1.22.0 (const: unstable) · sourceimpl RemAssign<&'_ u64> for Wrapping<u64>
impl RemAssign<&'_ u64> for Wrapping<u64>
const: unstable · sourcefn rem_assign(&mut self, other: &u64)
fn rem_assign(&mut self, other: &u64)
Performs the %=
operation. Read more
1.22.0 (const: unstable) · sourceimpl RemAssign<&'_ u8> for Wrapping<u8>
impl RemAssign<&'_ u8> for Wrapping<u8>
const: unstable · sourcefn rem_assign(&mut self, other: &u8)
fn rem_assign(&mut self, other: &u8)
Performs the %=
operation. Read more
1.22.0 (const: unstable) · sourceimpl RemAssign<&'_ usize> for Wrapping<usize>
impl RemAssign<&'_ usize> for Wrapping<usize>
const: unstable · sourcefn rem_assign(&mut self, other: &usize)
fn rem_assign(&mut self, other: &usize)
Performs the %=
operation. Read more
1.60.0 (const: unstable) · sourceimpl RemAssign<i128> for Wrapping<i128>
impl RemAssign<i128> for Wrapping<i128>
const: unstable · sourcefn rem_assign(&mut self, other: i128)
fn rem_assign(&mut self, other: i128)
Performs the %=
operation. Read more
1.60.0 (const: unstable) · sourceimpl RemAssign<i16> for Wrapping<i16>
impl RemAssign<i16> for Wrapping<i16>
const: unstable · sourcefn rem_assign(&mut self, other: i16)
fn rem_assign(&mut self, other: i16)
Performs the %=
operation. Read more
1.60.0 (const: unstable) · sourceimpl RemAssign<i32> for Wrapping<i32>
impl RemAssign<i32> for Wrapping<i32>
const: unstable · sourcefn rem_assign(&mut self, other: i32)
fn rem_assign(&mut self, other: i32)
Performs the %=
operation. Read more
1.60.0 (const: unstable) · sourceimpl RemAssign<i64> for Wrapping<i64>
impl RemAssign<i64> for Wrapping<i64>
const: unstable · sourcefn rem_assign(&mut self, other: i64)
fn rem_assign(&mut self, other: i64)
Performs the %=
operation. Read more
1.60.0 (const: unstable) · sourceimpl RemAssign<i8> for Wrapping<i8>
impl RemAssign<i8> for Wrapping<i8>
const: unstable · sourcefn rem_assign(&mut self, other: i8)
fn rem_assign(&mut self, other: i8)
Performs the %=
operation. Read more
1.60.0 (const: unstable) · sourceimpl RemAssign<isize> for Wrapping<isize>
impl RemAssign<isize> for Wrapping<isize>
const: unstable · sourcefn rem_assign(&mut self, other: isize)
fn rem_assign(&mut self, other: isize)
Performs the %=
operation. Read more
1.60.0 (const: unstable) · sourceimpl RemAssign<u128> for Wrapping<u128>
impl RemAssign<u128> for Wrapping<u128>
const: unstable · sourcefn rem_assign(&mut self, other: u128)
fn rem_assign(&mut self, other: u128)
Performs the %=
operation. Read more
1.60.0 (const: unstable) · sourceimpl RemAssign<u16> for Wrapping<u16>
impl RemAssign<u16> for Wrapping<u16>
const: unstable · sourcefn rem_assign(&mut self, other: u16)
fn rem_assign(&mut self, other: u16)
Performs the %=
operation. Read more
1.60.0 (const: unstable) · sourceimpl RemAssign<u32> for Wrapping<u32>
impl RemAssign<u32> for Wrapping<u32>
const: unstable · sourcefn rem_assign(&mut self, other: u32)
fn rem_assign(&mut self, other: u32)
Performs the %=
operation. Read more
1.60.0 (const: unstable) · sourceimpl RemAssign<u64> for Wrapping<u64>
impl RemAssign<u64> for Wrapping<u64>
const: unstable · sourcefn rem_assign(&mut self, other: u64)
fn rem_assign(&mut self, other: u64)
Performs the %=
operation. Read more
1.60.0 (const: unstable) · sourceimpl RemAssign<u8> for Wrapping<u8>
impl RemAssign<u8> for Wrapping<u8>
const: unstable · sourcefn rem_assign(&mut self, other: u8)
fn rem_assign(&mut self, other: u8)
Performs the %=
operation. Read more
1.60.0 (const: unstable) · sourceimpl RemAssign<usize> for Wrapping<usize>
impl RemAssign<usize> for Wrapping<usize>
const: unstable · sourcefn rem_assign(&mut self, other: usize)
fn rem_assign(&mut self, other: usize)
Performs the %=
operation. Read more
1.22.0 (const: unstable) · sourceimpl ShlAssign<&'_ usize> for Wrapping<u8>
impl ShlAssign<&'_ usize> for Wrapping<u8>
const: unstable · sourcefn shl_assign(&mut self, other: &usize)
fn shl_assign(&mut self, other: &usize)
Performs the <<=
operation. Read more
1.22.0 (const: unstable) · sourceimpl ShlAssign<&'_ usize> for Wrapping<u16>
impl ShlAssign<&'_ usize> for Wrapping<u16>
const: unstable · sourcefn shl_assign(&mut self, other: &usize)
fn shl_assign(&mut self, other: &usize)
Performs the <<=
operation. Read more
1.22.0 (const: unstable) · sourceimpl ShlAssign<&'_ usize> for Wrapping<i128>
impl ShlAssign<&'_ usize> for Wrapping<i128>
const: unstable · sourcefn shl_assign(&mut self, other: &usize)
fn shl_assign(&mut self, other: &usize)
Performs the <<=
operation. Read more
1.22.0 (const: unstable) · sourceimpl ShlAssign<&'_ usize> for Wrapping<isize>
impl ShlAssign<&'_ usize> for Wrapping<isize>
const: unstable · sourcefn shl_assign(&mut self, other: &usize)
fn shl_assign(&mut self, other: &usize)
Performs the <<=
operation. Read more
1.22.0 (const: unstable) · sourceimpl ShlAssign<&'_ usize> for Wrapping<u32>
impl ShlAssign<&'_ usize> for Wrapping<u32>
const: unstable · sourcefn shl_assign(&mut self, other: &usize)
fn shl_assign(&mut self, other: &usize)
Performs the <<=
operation. Read more
1.22.0 (const: unstable) · sourceimpl ShlAssign<&'_ usize> for Wrapping<u64>
impl ShlAssign<&'_ usize> for Wrapping<u64>
const: unstable · sourcefn shl_assign(&mut self, other: &usize)
fn shl_assign(&mut self, other: &usize)
Performs the <<=
operation. Read more
1.22.0 (const: unstable) · sourceimpl ShlAssign<&'_ usize> for Wrapping<u128>
impl ShlAssign<&'_ usize> for Wrapping<u128>
const: unstable · sourcefn shl_assign(&mut self, other: &usize)
fn shl_assign(&mut self, other: &usize)
Performs the <<=
operation. Read more
1.22.0 (const: unstable) · sourceimpl ShlAssign<&'_ usize> for Wrapping<usize>
impl ShlAssign<&'_ usize> for Wrapping<usize>
const: unstable · sourcefn shl_assign(&mut self, other: &usize)
fn shl_assign(&mut self, other: &usize)
Performs the <<=
operation. Read more
1.22.0 (const: unstable) · sourceimpl ShlAssign<&'_ usize> for Wrapping<i8>
impl ShlAssign<&'_ usize> for Wrapping<i8>
const: unstable · sourcefn shl_assign(&mut self, other: &usize)
fn shl_assign(&mut self, other: &usize)
Performs the <<=
operation. Read more
1.22.0 (const: unstable) · sourceimpl ShlAssign<&'_ usize> for Wrapping<i16>
impl ShlAssign<&'_ usize> for Wrapping<i16>
const: unstable · sourcefn shl_assign(&mut self, other: &usize)
fn shl_assign(&mut self, other: &usize)
Performs the <<=
operation. Read more
1.22.0 (const: unstable) · sourceimpl ShlAssign<&'_ usize> for Wrapping<i32>
impl ShlAssign<&'_ usize> for Wrapping<i32>
const: unstable · sourcefn shl_assign(&mut self, other: &usize)
fn shl_assign(&mut self, other: &usize)
Performs the <<=
operation. Read more
1.22.0 (const: unstable) · sourceimpl ShlAssign<&'_ usize> for Wrapping<i64>
impl ShlAssign<&'_ usize> for Wrapping<i64>
const: unstable · sourcefn shl_assign(&mut self, other: &usize)
fn shl_assign(&mut self, other: &usize)
Performs the <<=
operation. Read more
1.8.0 (const: unstable) · sourceimpl ShlAssign<usize> for Wrapping<u8>
impl ShlAssign<usize> for Wrapping<u8>
const: unstable · sourcefn shl_assign(&mut self, other: usize)
fn shl_assign(&mut self, other: usize)
Performs the <<=
operation. Read more
1.8.0 (const: unstable) · sourceimpl ShlAssign<usize> for Wrapping<u16>
impl ShlAssign<usize> for Wrapping<u16>
const: unstable · sourcefn shl_assign(&mut self, other: usize)
fn shl_assign(&mut self, other: usize)
Performs the <<=
operation. Read more
1.8.0 (const: unstable) · sourceimpl ShlAssign<usize> for Wrapping<i128>
impl ShlAssign<usize> for Wrapping<i128>
const: unstable · sourcefn shl_assign(&mut self, other: usize)
fn shl_assign(&mut self, other: usize)
Performs the <<=
operation. Read more
1.8.0 (const: unstable) · sourceimpl ShlAssign<usize> for Wrapping<isize>
impl ShlAssign<usize> for Wrapping<isize>
const: unstable · sourcefn shl_assign(&mut self, other: usize)
fn shl_assign(&mut self, other: usize)
Performs the <<=
operation. Read more
1.8.0 (const: unstable) · sourceimpl ShlAssign<usize> for Wrapping<u32>
impl ShlAssign<usize> for Wrapping<u32>
const: unstable · sourcefn shl_assign(&mut self, other: usize)
fn shl_assign(&mut self, other: usize)
Performs the <<=
operation. Read more
1.8.0 (const: unstable) · sourceimpl ShlAssign<usize> for Wrapping<u64>
impl ShlAssign<usize> for Wrapping<u64>
const: unstable · sourcefn shl_assign(&mut self, other: usize)
fn shl_assign(&mut self, other: usize)
Performs the <<=
operation. Read more
1.8.0 (const: unstable) · sourceimpl ShlAssign<usize> for Wrapping<u128>
impl ShlAssign<usize> for Wrapping<u128>
const: unstable · sourcefn shl_assign(&mut self, other: usize)
fn shl_assign(&mut self, other: usize)
Performs the <<=
operation. Read more
1.8.0 (const: unstable) · sourceimpl ShlAssign<usize> for Wrapping<usize>
impl ShlAssign<usize> for Wrapping<usize>
const: unstable · sourcefn shl_assign(&mut self, other: usize)
fn shl_assign(&mut self, other: usize)
Performs the <<=
operation. Read more
1.8.0 (const: unstable) · sourceimpl ShlAssign<usize> for Wrapping<i8>
impl ShlAssign<usize> for Wrapping<i8>
const: unstable · sourcefn shl_assign(&mut self, other: usize)
fn shl_assign(&mut self, other: usize)
Performs the <<=
operation. Read more
1.8.0 (const: unstable) · sourceimpl ShlAssign<usize> for Wrapping<i16>
impl ShlAssign<usize> for Wrapping<i16>
const: unstable · sourcefn shl_assign(&mut self, other: usize)
fn shl_assign(&mut self, other: usize)
Performs the <<=
operation. Read more
1.8.0 (const: unstable) · sourceimpl ShlAssign<usize> for Wrapping<i32>
impl ShlAssign<usize> for Wrapping<i32>
const: unstable · sourcefn shl_assign(&mut self, other: usize)
fn shl_assign(&mut self, other: usize)
Performs the <<=
operation. Read more
1.8.0 (const: unstable) · sourceimpl ShlAssign<usize> for Wrapping<i64>
impl ShlAssign<usize> for Wrapping<i64>
const: unstable · sourcefn shl_assign(&mut self, other: usize)
fn shl_assign(&mut self, other: usize)
Performs the <<=
operation. Read more
1.22.0 (const: unstable) · sourceimpl ShrAssign<&'_ usize> for Wrapping<u8>
impl ShrAssign<&'_ usize> for Wrapping<u8>
const: unstable · sourcefn shr_assign(&mut self, other: &usize)
fn shr_assign(&mut self, other: &usize)
Performs the >>=
operation. Read more
1.22.0 (const: unstable) · sourceimpl ShrAssign<&'_ usize> for Wrapping<u16>
impl ShrAssign<&'_ usize> for Wrapping<u16>
const: unstable · sourcefn shr_assign(&mut self, other: &usize)
fn shr_assign(&mut self, other: &usize)
Performs the >>=
operation. Read more
1.22.0 (const: unstable) · sourceimpl ShrAssign<&'_ usize> for Wrapping<i128>
impl ShrAssign<&'_ usize> for Wrapping<i128>
const: unstable · sourcefn shr_assign(&mut self, other: &usize)
fn shr_assign(&mut self, other: &usize)
Performs the >>=
operation. Read more
1.22.0 (const: unstable) · sourceimpl ShrAssign<&'_ usize> for Wrapping<isize>
impl ShrAssign<&'_ usize> for Wrapping<isize>
const: unstable · sourcefn shr_assign(&mut self, other: &usize)
fn shr_assign(&mut self, other: &usize)
Performs the >>=
operation. Read more
1.22.0 (const: unstable) · sourceimpl ShrAssign<&'_ usize> for Wrapping<u32>
impl ShrAssign<&'_ usize> for Wrapping<u32>
const: unstable · sourcefn shr_assign(&mut self, other: &usize)
fn shr_assign(&mut self, other: &usize)
Performs the >>=
operation. Read more
1.22.0 (const: unstable) · sourceimpl ShrAssign<&'_ usize> for Wrapping<u64>
impl ShrAssign<&'_ usize> for Wrapping<u64>
const: unstable · sourcefn shr_assign(&mut self, other: &usize)
fn shr_assign(&mut self, other: &usize)
Performs the >>=
operation. Read more
1.22.0 (const: unstable) · sourceimpl ShrAssign<&'_ usize> for Wrapping<u128>
impl ShrAssign<&'_ usize> for Wrapping<u128>
const: unstable · sourcefn shr_assign(&mut self, other: &usize)
fn shr_assign(&mut self, other: &usize)
Performs the >>=
operation. Read more
1.22.0 (const: unstable) · sourceimpl ShrAssign<&'_ usize> for Wrapping<usize>
impl ShrAssign<&'_ usize> for Wrapping<usize>
const: unstable · sourcefn shr_assign(&mut self, other: &usize)
fn shr_assign(&mut self, other: &usize)
Performs the >>=
operation. Read more
1.22.0 (const: unstable) · sourceimpl ShrAssign<&'_ usize> for Wrapping<i8>
impl ShrAssign<&'_ usize> for Wrapping<i8>
const: unstable · sourcefn shr_assign(&mut self, other: &usize)
fn shr_assign(&mut self, other: &usize)
Performs the >>=
operation. Read more
1.22.0 (const: unstable) · sourceimpl ShrAssign<&'_ usize> for Wrapping<i16>
impl ShrAssign<&'_ usize> for Wrapping<i16>
const: unstable · sourcefn shr_assign(&mut self, other: &usize)
fn shr_assign(&mut self, other: &usize)
Performs the >>=
operation. Read more
1.22.0 (const: unstable) · sourceimpl ShrAssign<&'_ usize> for Wrapping<i32>
impl ShrAssign<&'_ usize> for Wrapping<i32>
const: unstable · sourcefn shr_assign(&mut self, other: &usize)
fn shr_assign(&mut self, other: &usize)
Performs the >>=
operation. Read more
1.22.0 (const: unstable) · sourceimpl ShrAssign<&'_ usize> for Wrapping<i64>
impl ShrAssign<&'_ usize> for Wrapping<i64>
const: unstable · sourcefn shr_assign(&mut self, other: &usize)
fn shr_assign(&mut self, other: &usize)
Performs the >>=
operation. Read more
1.8.0 (const: unstable) · sourceimpl ShrAssign<usize> for Wrapping<u8>
impl ShrAssign<usize> for Wrapping<u8>
const: unstable · sourcefn shr_assign(&mut self, other: usize)
fn shr_assign(&mut self, other: usize)
Performs the >>=
operation. Read more
1.8.0 (const: unstable) · sourceimpl ShrAssign<usize> for Wrapping<u16>
impl ShrAssign<usize> for Wrapping<u16>
const: unstable · sourcefn shr_assign(&mut self, other: usize)
fn shr_assign(&mut self, other: usize)
Performs the >>=
operation. Read more
1.8.0 (const: unstable) · sourceimpl ShrAssign<usize> for Wrapping<i128>
impl ShrAssign<usize> for Wrapping<i128>
const: unstable · sourcefn shr_assign(&mut self, other: usize)
fn shr_assign(&mut self, other: usize)
Performs the >>=
operation. Read more
1.8.0 (const: unstable) · sourceimpl ShrAssign<usize> for Wrapping<isize>
impl ShrAssign<usize> for Wrapping<isize>
const: unstable · sourcefn shr_assign(&mut self, other: usize)
fn shr_assign(&mut self, other: usize)
Performs the >>=
operation. Read more
1.8.0 (const: unstable) · sourceimpl ShrAssign<usize> for Wrapping<u32>
impl ShrAssign<usize> for Wrapping<u32>
const: unstable · sourcefn shr_assign(&mut self, other: usize)
fn shr_assign(&mut self, other: usize)
Performs the >>=
operation. Read more
1.8.0 (const: unstable) · sourceimpl ShrAssign<usize> for Wrapping<u64>
impl ShrAssign<usize> for Wrapping<u64>
const: unstable · sourcefn shr_assign(&mut self, other: usize)
fn shr_assign(&mut self, other: usize)
Performs the >>=
operation. Read more
1.8.0 (const: unstable) · sourceimpl ShrAssign<usize> for Wrapping<u128>
impl ShrAssign<usize> for Wrapping<u128>
const: unstable · sourcefn shr_assign(&mut self, other: usize)
fn shr_assign(&mut self, other: usize)
Performs the >>=
operation. Read more
1.8.0 (const: unstable) · sourceimpl ShrAssign<usize> for Wrapping<usize>
impl ShrAssign<usize> for Wrapping<usize>
const: unstable · sourcefn shr_assign(&mut self, other: usize)
fn shr_assign(&mut self, other: usize)
Performs the >>=
operation. Read more
1.8.0 (const: unstable) · sourceimpl ShrAssign<usize> for Wrapping<i8>
impl ShrAssign<usize> for Wrapping<i8>
const: unstable · sourcefn shr_assign(&mut self, other: usize)
fn shr_assign(&mut self, other: usize)
Performs the >>=
operation. Read more
1.8.0 (const: unstable) · sourceimpl ShrAssign<usize> for Wrapping<i16>
impl ShrAssign<usize> for Wrapping<i16>
const: unstable · sourcefn shr_assign(&mut self, other: usize)
fn shr_assign(&mut self, other: usize)
Performs the >>=
operation. Read more
1.8.0 (const: unstable) · sourceimpl ShrAssign<usize> for Wrapping<i32>
impl ShrAssign<usize> for Wrapping<i32>
const: unstable · sourcefn shr_assign(&mut self, other: usize)
fn shr_assign(&mut self, other: usize)
Performs the >>=
operation. Read more
1.8.0 (const: unstable) · sourceimpl ShrAssign<usize> for Wrapping<i64>
impl ShrAssign<usize> for Wrapping<i64>
const: unstable · sourcefn shr_assign(&mut self, other: usize)
fn shr_assign(&mut self, other: usize)
Performs the >>=
operation. Read more
1.22.0 (const: unstable) · sourceimpl SubAssign<&'_ i128> for Wrapping<i128>
impl SubAssign<&'_ i128> for Wrapping<i128>
const: unstable · sourcefn sub_assign(&mut self, other: &i128)
fn sub_assign(&mut self, other: &i128)
Performs the -=
operation. Read more
1.22.0 (const: unstable) · sourceimpl SubAssign<&'_ i16> for Wrapping<i16>
impl SubAssign<&'_ i16> for Wrapping<i16>
const: unstable · sourcefn sub_assign(&mut self, other: &i16)
fn sub_assign(&mut self, other: &i16)
Performs the -=
operation. Read more
1.22.0 (const: unstable) · sourceimpl SubAssign<&'_ i32> for Wrapping<i32>
impl SubAssign<&'_ i32> for Wrapping<i32>
const: unstable · sourcefn sub_assign(&mut self, other: &i32)
fn sub_assign(&mut self, other: &i32)
Performs the -=
operation. Read more
1.22.0 (const: unstable) · sourceimpl SubAssign<&'_ i64> for Wrapping<i64>
impl SubAssign<&'_ i64> for Wrapping<i64>
const: unstable · sourcefn sub_assign(&mut self, other: &i64)
fn sub_assign(&mut self, other: &i64)
Performs the -=
operation. Read more
1.22.0 (const: unstable) · sourceimpl SubAssign<&'_ i8> for Wrapping<i8>
impl SubAssign<&'_ i8> for Wrapping<i8>
const: unstable · sourcefn sub_assign(&mut self, other: &i8)
fn sub_assign(&mut self, other: &i8)
Performs the -=
operation. Read more
1.22.0 (const: unstable) · sourceimpl SubAssign<&'_ isize> for Wrapping<isize>
impl SubAssign<&'_ isize> for Wrapping<isize>
const: unstable · sourcefn sub_assign(&mut self, other: &isize)
fn sub_assign(&mut self, other: &isize)
Performs the -=
operation. Read more
1.22.0 (const: unstable) · sourceimpl SubAssign<&'_ u128> for Wrapping<u128>
impl SubAssign<&'_ u128> for Wrapping<u128>
const: unstable · sourcefn sub_assign(&mut self, other: &u128)
fn sub_assign(&mut self, other: &u128)
Performs the -=
operation. Read more
1.22.0 (const: unstable) · sourceimpl SubAssign<&'_ u16> for Wrapping<u16>
impl SubAssign<&'_ u16> for Wrapping<u16>
const: unstable · sourcefn sub_assign(&mut self, other: &u16)
fn sub_assign(&mut self, other: &u16)
Performs the -=
operation. Read more
1.22.0 (const: unstable) · sourceimpl SubAssign<&'_ u32> for Wrapping<u32>
impl SubAssign<&'_ u32> for Wrapping<u32>
const: unstable · sourcefn sub_assign(&mut self, other: &u32)
fn sub_assign(&mut self, other: &u32)
Performs the -=
operation. Read more
1.22.0 (const: unstable) · sourceimpl SubAssign<&'_ u64> for Wrapping<u64>
impl SubAssign<&'_ u64> for Wrapping<u64>
const: unstable · sourcefn sub_assign(&mut self, other: &u64)
fn sub_assign(&mut self, other: &u64)
Performs the -=
operation. Read more
1.22.0 (const: unstable) · sourceimpl SubAssign<&'_ u8> for Wrapping<u8>
impl SubAssign<&'_ u8> for Wrapping<u8>
const: unstable · sourcefn sub_assign(&mut self, other: &u8)
fn sub_assign(&mut self, other: &u8)
Performs the -=
operation. Read more
1.22.0 (const: unstable) · sourceimpl SubAssign<&'_ usize> for Wrapping<usize>
impl SubAssign<&'_ usize> for Wrapping<usize>
const: unstable · sourcefn sub_assign(&mut self, other: &usize)
fn sub_assign(&mut self, other: &usize)
Performs the -=
operation. Read more
1.60.0 (const: unstable) · sourceimpl SubAssign<i128> for Wrapping<i128>
impl SubAssign<i128> for Wrapping<i128>
const: unstable · sourcefn sub_assign(&mut self, other: i128)
fn sub_assign(&mut self, other: i128)
Performs the -=
operation. Read more
1.60.0 (const: unstable) · sourceimpl SubAssign<i16> for Wrapping<i16>
impl SubAssign<i16> for Wrapping<i16>
const: unstable · sourcefn sub_assign(&mut self, other: i16)
fn sub_assign(&mut self, other: i16)
Performs the -=
operation. Read more
1.60.0 (const: unstable) · sourceimpl SubAssign<i32> for Wrapping<i32>
impl SubAssign<i32> for Wrapping<i32>
const: unstable · sourcefn sub_assign(&mut self, other: i32)
fn sub_assign(&mut self, other: i32)
Performs the -=
operation. Read more
1.60.0 (const: unstable) · sourceimpl SubAssign<i64> for Wrapping<i64>
impl SubAssign<i64> for Wrapping<i64>
const: unstable · sourcefn sub_assign(&mut self, other: i64)
fn sub_assign(&mut self, other: i64)
Performs the -=
operation. Read more
1.60.0 (const: unstable) · sourceimpl SubAssign<i8> for Wrapping<i8>
impl SubAssign<i8> for Wrapping<i8>
const: unstable · sourcefn sub_assign(&mut self, other: i8)
fn sub_assign(&mut self, other: i8)
Performs the -=
operation. Read more
1.60.0 (const: unstable) · sourceimpl SubAssign<isize> for Wrapping<isize>
impl SubAssign<isize> for Wrapping<isize>
const: unstable · sourcefn sub_assign(&mut self, other: isize)
fn sub_assign(&mut self, other: isize)
Performs the -=
operation. Read more
1.60.0 (const: unstable) · sourceimpl SubAssign<u128> for Wrapping<u128>
impl SubAssign<u128> for Wrapping<u128>
const: unstable · sourcefn sub_assign(&mut self, other: u128)
fn sub_assign(&mut self, other: u128)
Performs the -=
operation. Read more
1.60.0 (const: unstable) · sourceimpl SubAssign<u16> for Wrapping<u16>
impl SubAssign<u16> for Wrapping<u16>
const: unstable · sourcefn sub_assign(&mut self, other: u16)
fn sub_assign(&mut self, other: u16)
Performs the -=
operation. Read more
1.60.0 (const: unstable) · sourceimpl SubAssign<u32> for Wrapping<u32>
impl SubAssign<u32> for Wrapping<u32>
const: unstable · sourcefn sub_assign(&mut self, other: u32)
fn sub_assign(&mut self, other: u32)
Performs the -=
operation. Read more
1.60.0 (const: unstable) · sourceimpl SubAssign<u64> for Wrapping<u64>
impl SubAssign<u64> for Wrapping<u64>
const: unstable · sourcefn sub_assign(&mut self, other: u64)
fn sub_assign(&mut self, other: u64)
Performs the -=
operation. Read more
1.60.0 (const: unstable) · sourceimpl SubAssign<u8> for Wrapping<u8>
impl SubAssign<u8> for Wrapping<u8>
const: unstable · sourcefn sub_assign(&mut self, other: u8)
fn sub_assign(&mut self, other: u8)
Performs the -=
operation. Read more
1.60.0 (const: unstable) · sourceimpl SubAssign<usize> for Wrapping<usize>
impl SubAssign<usize> for Wrapping<usize>
const: unstable · sourcefn sub_assign(&mut self, other: usize)
fn sub_assign(&mut self, other: usize)
Performs the -=
operation. Read more
impl<T: Copy> Copy for Wrapping<T>
impl<T: Eq> Eq for Wrapping<T>
impl<T> StructuralEq for Wrapping<T>
impl<T> StructuralPartialEq for Wrapping<T>
Auto Trait Implementations
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,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more