Expand description
The remainder operator %
.
Note that Rhs
is Self
by default, but this is not mandatory.
Examples
This example implements Rem
on a SplitSlice
object. After Rem
is
implemented, one can use the %
operator to find out what the remaining
elements of the slice would be after splitting it into equal slices of a
given length.
use std::ops::Rem;
#[derive(PartialEq, Debug)]
struct SplitSlice<'a, T: 'a> {
slice: &'a [T],
}
impl<'a, T> Rem<usize> for SplitSlice<'a, T> {
type Output = Self;
fn rem(self, modulus: usize) -> Self::Output {
let len = self.slice.len();
let rem = len % modulus;
let start = len - rem;
Self {slice: &self.slice[start..]}
}
}
// If we were to divide &[0, 1, 2, 3, 4, 5, 6, 7] into slices of size 3,
// the remainder would be &[6, 7].
assert_eq!(SplitSlice { slice: &[0, 1, 2, 3, 4, 5, 6, 7] } % 3,
SplitSlice { slice: &[6, 7] });
Associated Types
Required methods
Implementations on Foreign Types
sourceimpl Rem<Saturating<i64>> for Saturating<i64>
impl Rem<Saturating<i64>> for Saturating<i64>
type Output = Saturating<i64>
pub fn rem(self, other: Saturating<i64>) -> Saturating<i64>
sourceimpl Rem<&'_ Saturating<u16>> for Saturating<u16>
impl Rem<&'_ Saturating<u16>> for Saturating<u16>
type Output = <Saturating<u16> as Rem<Saturating<u16>>>::Output
pub fn rem(
self,
other: &Saturating<u16>
) -> <Saturating<u16> as Rem<Saturating<u16>>>::Output
sourceimpl Rem<Saturating<u8>> for Saturating<u8>
impl Rem<Saturating<u8>> for Saturating<u8>
type Output = Saturating<u8>
pub fn rem(self, other: Saturating<u8>) -> Saturating<u8>
sourceimpl Rem<&'_ Saturating<i32>> for Saturating<i32>
impl Rem<&'_ Saturating<i32>> for Saturating<i32>
type Output = <Saturating<i32> as Rem<Saturating<i32>>>::Output
pub fn rem(
self,
other: &Saturating<i32>
) -> <Saturating<i32> as Rem<Saturating<i32>>>::Output
sourceimpl Rem<&'_ Saturating<u64>> for &'_ Saturating<u64>
impl Rem<&'_ Saturating<u64>> for &'_ Saturating<u64>
type Output = <Saturating<u64> as Rem<Saturating<u64>>>::Output
pub fn rem(
self,
other: &Saturating<u64>
) -> <Saturating<u64> as Rem<Saturating<u64>>>::Output
sourceimpl<'a> Rem<Saturating<u128>> for &'a Saturating<u128>
impl<'a> Rem<Saturating<u128>> for &'a Saturating<u128>
type Output = <Saturating<u128> as Rem<Saturating<u128>>>::Output
pub fn rem(
self,
other: Saturating<u128>
) -> <Saturating<u128> as Rem<Saturating<u128>>>::Output
sourceimpl Rem<Saturating<u32>> for Saturating<u32>
impl Rem<Saturating<u32>> for Saturating<u32>
type Output = Saturating<u32>
pub fn rem(self, other: Saturating<u32>) -> Saturating<u32>
sourceimpl<T, const LANES: usize> Rem<&'_ Simd<T, LANES>> for Simd<T, LANES> where
T: SimdElement,
Simd<T, LANES>: Rem<Simd<T, LANES>>,
LaneCount<LANES>: SupportedLaneCount,
<Simd<T, LANES> as Rem<Simd<T, LANES>>>::Output == Simd<T, LANES>,
impl<T, const LANES: usize> Rem<&'_ Simd<T, LANES>> for Simd<T, LANES> where
T: SimdElement,
Simd<T, LANES>: Rem<Simd<T, LANES>>,
LaneCount<LANES>: SupportedLaneCount,
<Simd<T, LANES> as Rem<Simd<T, LANES>>>::Output == Simd<T, LANES>,
const: unstable · sourceimpl Rem<u16> for u16
impl Rem<u16> for u16
This operation satisfies n % d == n - (n / d) * d
. The
result has the same sign as the left operand.
Panics
This operation will panic if other == 0
.
1.51.0 (const: unstable) · sourceimpl Rem<NonZeroU64> for u64
impl Rem<NonZeroU64> for u64
sourceimpl<const N: usize> Rem<Simd<i8, N>> for Simd<i8, N> where
i8: SimdElement,
LaneCount<N>: SupportedLaneCount,
impl<const N: usize> Rem<Simd<i8, N>> for Simd<i8, N> where
i8: SimdElement,
LaneCount<N>: SupportedLaneCount,
sourceimpl Rem<&'_ Saturating<u32>> for &'_ Saturating<u32>
impl Rem<&'_ Saturating<u32>> for &'_ Saturating<u32>
type Output = <Saturating<u32> as Rem<Saturating<u32>>>::Output
pub fn rem(
self,
other: &Saturating<u32>
) -> <Saturating<u32> as Rem<Saturating<u32>>>::Output
const: unstable · sourceimpl Rem<u128> for u128
impl Rem<u128> for u128
This operation satisfies n % d == n - (n / d) * d
. The
result has the same sign as the left operand.
Panics
This operation will panic if other == 0
.
sourceimpl<const N: usize> Rem<Simd<u8, N>> for Simd<u8, N> where
u8: SimdElement,
LaneCount<N>: SupportedLaneCount,
impl<const N: usize> Rem<Simd<u8, N>> for Simd<u8, N> where
u8: SimdElement,
LaneCount<N>: SupportedLaneCount,
sourceimpl<const N: usize> Rem<Simd<i32, N>> for Simd<i32, N> where
i32: SimdElement,
LaneCount<N>: SupportedLaneCount,
impl<const N: usize> Rem<Simd<i32, N>> for Simd<i32, N> where
i32: SimdElement,
LaneCount<N>: SupportedLaneCount,
sourceimpl Rem<Saturating<i8>> for Saturating<i8>
impl Rem<Saturating<i8>> for Saturating<i8>
type Output = Saturating<i8>
pub fn rem(self, other: Saturating<i8>) -> Saturating<i8>
sourceimpl Rem<&'_ Saturating<u64>> for Saturating<u64>
impl Rem<&'_ Saturating<u64>> for Saturating<u64>
type Output = <Saturating<u64> as Rem<Saturating<u64>>>::Output
pub fn rem(
self,
other: &Saturating<u64>
) -> <Saturating<u64> as Rem<Saturating<u64>>>::Output
sourceimpl Rem<&'_ Saturating<usize>> for &'_ Saturating<usize>
impl Rem<&'_ Saturating<usize>> for &'_ Saturating<usize>
type Output = <Saturating<usize> as Rem<Saturating<usize>>>::Output
pub fn rem(
self,
other: &Saturating<usize>
) -> <Saturating<usize> as Rem<Saturating<usize>>>::Output
const: unstable · sourceimpl Rem<i16> for i16
impl Rem<i16> for i16
This operation satisfies n % d == n - (n / d) * d
. The
result has the same sign as the left operand.
Panics
This operation will panic if other == 0
or if self / other
results in overflow.
sourceimpl Rem<Saturating<i128>> for Saturating<i128>
impl Rem<Saturating<i128>> for Saturating<i128>
type Output = Saturating<i128>
pub fn rem(self, other: Saturating<i128>) -> Saturating<i128>
sourceimpl Rem<&'_ Saturating<i128>> for Saturating<i128>
impl Rem<&'_ Saturating<i128>> for Saturating<i128>
type Output = <Saturating<i128> as Rem<Saturating<i128>>>::Output
pub fn rem(
self,
other: &Saturating<i128>
) -> <Saturating<i128> as Rem<Saturating<i128>>>::Output
sourceimpl<'a> Rem<Saturating<i128>> for &'a Saturating<i128>
impl<'a> Rem<Saturating<i128>> for &'a Saturating<i128>
type Output = <Saturating<i128> as Rem<Saturating<i128>>>::Output
pub fn rem(
self,
other: Saturating<i128>
) -> <Saturating<i128> as Rem<Saturating<i128>>>::Output
sourceimpl Rem<&'_ Saturating<isize>> for Saturating<isize>
impl Rem<&'_ Saturating<isize>> for Saturating<isize>
type Output = <Saturating<isize> as Rem<Saturating<isize>>>::Output
pub fn rem(
self,
other: &Saturating<isize>
) -> <Saturating<isize> as Rem<Saturating<isize>>>::Output
sourceimpl Rem<&'_ Saturating<i8>> for Saturating<i8>
impl Rem<&'_ Saturating<i8>> for Saturating<i8>
type Output = <Saturating<i8> as Rem<Saturating<i8>>>::Output
pub fn rem(
self,
other: &Saturating<i8>
) -> <Saturating<i8> as Rem<Saturating<i8>>>::Output
1.51.0 (const: unstable) · sourceimpl Rem<NonZeroU32> for u32
impl Rem<NonZeroU32> for u32
sourceimpl<const N: usize> Rem<Simd<i16, N>> for Simd<i16, N> where
i16: SimdElement,
LaneCount<N>: SupportedLaneCount,
impl<const N: usize> Rem<Simd<i16, N>> for Simd<i16, N> where
i16: SimdElement,
LaneCount<N>: SupportedLaneCount,
sourceimpl<'a> Rem<Saturating<isize>> for &'a Saturating<isize>
impl<'a> Rem<Saturating<isize>> for &'a Saturating<isize>
type Output = <Saturating<isize> as Rem<Saturating<isize>>>::Output
pub fn rem(
self,
other: Saturating<isize>
) -> <Saturating<isize> as Rem<Saturating<isize>>>::Output
const: unstable · sourceimpl Rem<f32> for f32
impl Rem<f32> for f32
The remainder from the division of two floats.
The remainder has the same sign as the dividend and is computed as:
x - (x / y).trunc() * y
.
Examples
let x: f32 = 50.50;
let y: f32 = 8.125;
let remainder = x - (x / y).trunc() * y;
// The answer to both operations is 1.75
assert_eq!(x % y, remainder);
sourceimpl Rem<Saturating<i32>> for Saturating<i32>
impl Rem<Saturating<i32>> for Saturating<i32>
type Output = Saturating<i32>
pub fn rem(self, other: Saturating<i32>) -> Saturating<i32>
sourceimpl Rem<&'_ Saturating<u16>> for &'_ Saturating<u16>
impl Rem<&'_ Saturating<u16>> for &'_ Saturating<u16>
type Output = <Saturating<u16> as Rem<Saturating<u16>>>::Output
pub fn rem(
self,
other: &Saturating<u16>
) -> <Saturating<u16> as Rem<Saturating<u16>>>::Output
const: unstable · sourceimpl Rem<u32> for u32
impl Rem<u32> for u32
This operation satisfies n % d == n - (n / d) * d
. The
result has the same sign as the left operand.
Panics
This operation will panic if other == 0
.
const: unstable · sourceimpl Rem<i128> for i128
impl Rem<i128> for i128
This operation satisfies n % d == n - (n / d) * d
. The
result has the same sign as the left operand.
Panics
This operation will panic if other == 0
or if self / other
results in overflow.
sourceimpl<const N: usize> Rem<Simd<usize, N>> for Simd<usize, N> where
usize: SimdElement,
LaneCount<N>: SupportedLaneCount,
impl<const N: usize> Rem<Simd<usize, N>> for Simd<usize, N> where
usize: SimdElement,
LaneCount<N>: SupportedLaneCount,
sourceimpl Rem<Saturating<isize>> for Saturating<isize>
impl Rem<Saturating<isize>> for Saturating<isize>
type Output = Saturating<isize>
pub fn rem(self, other: Saturating<isize>) -> Saturating<isize>
sourceimpl Rem<&'_ Saturating<usize>> for Saturating<usize>
impl Rem<&'_ Saturating<usize>> for Saturating<usize>
type Output = <Saturating<usize> as Rem<Saturating<usize>>>::Output
pub fn rem(
self,
other: &Saturating<usize>
) -> <Saturating<usize> as Rem<Saturating<usize>>>::Output
const: unstable · sourceimpl Rem<usize> for usize
impl Rem<usize> for usize
This operation satisfies n % d == n - (n / d) * d
. The
result has the same sign as the left operand.
Panics
This operation will panic if other == 0
.
sourceimpl Rem<Saturating<u128>> for Saturating<u128>
impl Rem<Saturating<u128>> for Saturating<u128>
type Output = Saturating<u128>
pub fn rem(self, other: Saturating<u128>) -> Saturating<u128>
sourceimpl Rem<&'_ Saturating<isize>> for &'_ Saturating<isize>
impl Rem<&'_ Saturating<isize>> for &'_ Saturating<isize>
type Output = <Saturating<isize> as Rem<Saturating<isize>>>::Output
pub fn rem(
self,
other: &Saturating<isize>
) -> <Saturating<isize> as Rem<Saturating<isize>>>::Output
const: unstable · sourceimpl Rem<i32> for i32
impl Rem<i32> for i32
This operation satisfies n % d == n - (n / d) * d
. The
result has the same sign as the left operand.
Panics
This operation will panic if other == 0
or if self / other
results in overflow.
sourceimpl<'a> Rem<Saturating<u16>> for &'a Saturating<u16>
impl<'a> Rem<Saturating<u16>> for &'a Saturating<u16>
type Output = <Saturating<u16> as Rem<Saturating<u16>>>::Output
pub fn rem(
self,
other: Saturating<u16>
) -> <Saturating<u16> as Rem<Saturating<u16>>>::Output
const: unstable · sourceimpl Rem<i8> for i8
impl Rem<i8> for i8
This operation satisfies n % d == n - (n / d) * d
. The
result has the same sign as the left operand.
Panics
This operation will panic if other == 0
or if self / other
results in overflow.
sourceimpl Rem<&'_ Saturating<i64>> for Saturating<i64>
impl Rem<&'_ Saturating<i64>> for Saturating<i64>
type Output = <Saturating<i64> as Rem<Saturating<i64>>>::Output
pub fn rem(
self,
other: &Saturating<i64>
) -> <Saturating<i64> as Rem<Saturating<i64>>>::Output
sourceimpl Rem<&'_ Saturating<u128>> for &'_ Saturating<u128>
impl Rem<&'_ Saturating<u128>> for &'_ Saturating<u128>
type Output = <Saturating<u128> as Rem<Saturating<u128>>>::Output
pub fn rem(
self,
other: &Saturating<u128>
) -> <Saturating<u128> as Rem<Saturating<u128>>>::Output
sourceimpl Rem<&'_ Saturating<u8>> for &'_ Saturating<u8>
impl Rem<&'_ Saturating<u8>> for &'_ Saturating<u8>
type Output = <Saturating<u8> as Rem<Saturating<u8>>>::Output
pub fn rem(
self,
other: &Saturating<u8>
) -> <Saturating<u8> as Rem<Saturating<u8>>>::Output
sourceimpl Rem<&'_ Saturating<i32>> for &'_ Saturating<i32>
impl Rem<&'_ Saturating<i32>> for &'_ Saturating<i32>
type Output = <Saturating<i32> as Rem<Saturating<i32>>>::Output
pub fn rem(
self,
other: &Saturating<i32>
) -> <Saturating<i32> as Rem<Saturating<i32>>>::Output
sourceimpl Rem<Saturating<u64>> for Saturating<u64>
impl Rem<Saturating<u64>> for Saturating<u64>
type Output = Saturating<u64>
pub fn rem(self, other: Saturating<u64>) -> Saturating<u64>
sourceimpl Rem<&'_ Saturating<i128>> for &'_ Saturating<i128>
impl Rem<&'_ Saturating<i128>> for &'_ Saturating<i128>
type Output = <Saturating<i128> as Rem<Saturating<i128>>>::Output
pub fn rem(
self,
other: &Saturating<i128>
) -> <Saturating<i128> as Rem<Saturating<i128>>>::Output
sourceimpl<'a> Rem<Saturating<u32>> for &'a Saturating<u32>
impl<'a> Rem<Saturating<u32>> for &'a Saturating<u32>
type Output = <Saturating<u32> as Rem<Saturating<u32>>>::Output
pub fn rem(
self,
other: Saturating<u32>
) -> <Saturating<u32> as Rem<Saturating<u32>>>::Output
sourceimpl Rem<&'_ Saturating<i64>> for &'_ Saturating<i64>
impl Rem<&'_ Saturating<i64>> for &'_ Saturating<i64>
type Output = <Saturating<i64> as Rem<Saturating<i64>>>::Output
pub fn rem(
self,
other: &Saturating<i64>
) -> <Saturating<i64> as Rem<Saturating<i64>>>::Output
sourceimpl<'lhs, 'rhs, T, const LANES: usize> Rem<&'rhs Simd<T, LANES>> for &'lhs Simd<T, LANES> where
T: SimdElement,
Simd<T, LANES>: Rem<Simd<T, LANES>>,
LaneCount<LANES>: SupportedLaneCount,
<Simd<T, LANES> as Rem<Simd<T, LANES>>>::Output == Simd<T, LANES>,
impl<'lhs, 'rhs, T, const LANES: usize> Rem<&'rhs Simd<T, LANES>> for &'lhs Simd<T, LANES> where
T: SimdElement,
Simd<T, LANES>: Rem<Simd<T, LANES>>,
LaneCount<LANES>: SupportedLaneCount,
<Simd<T, LANES> as Rem<Simd<T, LANES>>>::Output == Simd<T, LANES>,
sourceimpl Rem<&'_ Saturating<i16>> for &'_ Saturating<i16>
impl Rem<&'_ Saturating<i16>> for &'_ Saturating<i16>
type Output = <Saturating<i16> as Rem<Saturating<i16>>>::Output
pub fn rem(
self,
other: &Saturating<i16>
) -> <Saturating<i16> as Rem<Saturating<i16>>>::Output
sourceimpl<const N: usize> Rem<Simd<f64, N>> for Simd<f64, N> where
f64: SimdElement,
LaneCount<N>: SupportedLaneCount,
impl<const N: usize> Rem<Simd<f64, N>> for Simd<f64, N> where
f64: SimdElement,
LaneCount<N>: SupportedLaneCount,
sourceimpl<'a> Rem<Saturating<i32>> for &'a Saturating<i32>
impl<'a> Rem<Saturating<i32>> for &'a Saturating<i32>
type Output = <Saturating<i32> as Rem<Saturating<i32>>>::Output
pub fn rem(
self,
other: Saturating<i32>
) -> <Saturating<i32> as Rem<Saturating<i32>>>::Output
sourceimpl<T, const LANES: usize> Rem<Simd<T, LANES>> for &'_ Simd<T, LANES> where
T: SimdElement,
Simd<T, LANES>: Rem<Simd<T, LANES>>,
LaneCount<LANES>: SupportedLaneCount,
<Simd<T, LANES> as Rem<Simd<T, LANES>>>::Output == Simd<T, LANES>,
impl<T, const LANES: usize> Rem<Simd<T, LANES>> for &'_ Simd<T, LANES> where
T: SimdElement,
Simd<T, LANES>: Rem<Simd<T, LANES>>,
LaneCount<LANES>: SupportedLaneCount,
<Simd<T, LANES> as Rem<Simd<T, LANES>>>::Output == Simd<T, LANES>,
sourceimpl<'a> Rem<Saturating<u8>> for &'a Saturating<u8>
impl<'a> Rem<Saturating<u8>> for &'a Saturating<u8>
type Output = <Saturating<u8> as Rem<Saturating<u8>>>::Output
pub fn rem(
self,
other: Saturating<u8>
) -> <Saturating<u8> as Rem<Saturating<u8>>>::Output
1.51.0 (const: unstable) · sourceimpl Rem<NonZeroUsize> for usize
impl Rem<NonZeroUsize> for usize
1.51.0 (const: unstable) · sourceimpl Rem<NonZeroU128> for u128
impl Rem<NonZeroU128> for u128
sourceimpl<'a> Rem<Saturating<i64>> for &'a Saturating<i64>
impl<'a> Rem<Saturating<i64>> for &'a Saturating<i64>
type Output = <Saturating<i64> as Rem<Saturating<i64>>>::Output
pub fn rem(
self,
other: Saturating<i64>
) -> <Saturating<i64> as Rem<Saturating<i64>>>::Output
sourceimpl<'a> Rem<Saturating<u64>> for &'a Saturating<u64>
impl<'a> Rem<Saturating<u64>> for &'a Saturating<u64>
type Output = <Saturating<u64> as Rem<Saturating<u64>>>::Output
pub fn rem(
self,
other: Saturating<u64>
) -> <Saturating<u64> as Rem<Saturating<u64>>>::Output
sourceimpl Rem<Saturating<i16>> for Saturating<i16>
impl Rem<Saturating<i16>> for Saturating<i16>
type Output = Saturating<i16>
pub fn rem(self, other: Saturating<i16>) -> Saturating<i16>
sourceimpl Rem<&'_ Saturating<i16>> for Saturating<i16>
impl Rem<&'_ Saturating<i16>> for Saturating<i16>
type Output = <Saturating<i16> as Rem<Saturating<i16>>>::Output
pub fn rem(
self,
other: &Saturating<i16>
) -> <Saturating<i16> as Rem<Saturating<i16>>>::Output
sourceimpl Rem<&'_ Saturating<u128>> for Saturating<u128>
impl Rem<&'_ Saturating<u128>> for Saturating<u128>
type Output = <Saturating<u128> as Rem<Saturating<u128>>>::Output
pub fn rem(
self,
other: &Saturating<u128>
) -> <Saturating<u128> as Rem<Saturating<u128>>>::Output
sourceimpl<const N: usize> Rem<Simd<u16, N>> for Simd<u16, N> where
u16: SimdElement,
LaneCount<N>: SupportedLaneCount,
impl<const N: usize> Rem<Simd<u16, N>> for Simd<u16, N> where
u16: SimdElement,
LaneCount<N>: SupportedLaneCount,
sourceimpl Rem<&'_ Saturating<i8>> for &'_ Saturating<i8>
impl Rem<&'_ Saturating<i8>> for &'_ Saturating<i8>
type Output = <Saturating<i8> as Rem<Saturating<i8>>>::Output
pub fn rem(
self,
other: &Saturating<i8>
) -> <Saturating<i8> as Rem<Saturating<i8>>>::Output
const: unstable · sourceimpl Rem<u64> for u64
impl Rem<u64> for u64
This operation satisfies n % d == n - (n / d) * d
. The
result has the same sign as the left operand.
Panics
This operation will panic if other == 0
.
sourceimpl Rem<&'_ Saturating<u32>> for Saturating<u32>
impl Rem<&'_ Saturating<u32>> for Saturating<u32>
type Output = <Saturating<u32> as Rem<Saturating<u32>>>::Output
pub fn rem(
self,
other: &Saturating<u32>
) -> <Saturating<u32> as Rem<Saturating<u32>>>::Output
sourceimpl<const N: usize> Rem<Simd<isize, N>> for Simd<isize, N> where
isize: SimdElement,
LaneCount<N>: SupportedLaneCount,
impl<const N: usize> Rem<Simd<isize, N>> for Simd<isize, N> where
isize: SimdElement,
LaneCount<N>: SupportedLaneCount,
sourceimpl<const N: usize> Rem<Simd<i64, N>> for Simd<i64, N> where
i64: SimdElement,
LaneCount<N>: SupportedLaneCount,
impl<const N: usize> Rem<Simd<i64, N>> for Simd<i64, N> where
i64: SimdElement,
LaneCount<N>: SupportedLaneCount,
const: unstable · sourceimpl Rem<isize> for isize
impl Rem<isize> for isize
This operation satisfies n % d == n - (n / d) * d
. The
result has the same sign as the left operand.
Panics
This operation will panic if other == 0
or if self / other
results in overflow.
sourceimpl<const N: usize> Rem<Simd<u32, N>> for Simd<u32, N> where
u32: SimdElement,
LaneCount<N>: SupportedLaneCount,
impl<const N: usize> Rem<Simd<u32, N>> for Simd<u32, N> where
u32: SimdElement,
LaneCount<N>: SupportedLaneCount,
sourceimpl<const N: usize> Rem<Simd<f32, N>> for Simd<f32, N> where
f32: SimdElement,
LaneCount<N>: SupportedLaneCount,
impl<const N: usize> Rem<Simd<f32, N>> for Simd<f32, N> where
f32: SimdElement,
LaneCount<N>: SupportedLaneCount,
sourceimpl<'a> Rem<Saturating<i8>> for &'a Saturating<i8>
impl<'a> Rem<Saturating<i8>> for &'a Saturating<i8>
type Output = <Saturating<i8> as Rem<Saturating<i8>>>::Output
pub fn rem(
self,
other: Saturating<i8>
) -> <Saturating<i8> as Rem<Saturating<i8>>>::Output
sourceimpl<const N: usize> Rem<Simd<u64, N>> for Simd<u64, N> where
u64: SimdElement,
LaneCount<N>: SupportedLaneCount,
impl<const N: usize> Rem<Simd<u64, N>> for Simd<u64, N> where
u64: SimdElement,
LaneCount<N>: SupportedLaneCount,
sourceimpl Rem<Saturating<u16>> for Saturating<u16>
impl Rem<Saturating<u16>> for Saturating<u16>
type Output = Saturating<u16>
pub fn rem(self, other: Saturating<u16>) -> Saturating<u16>
const: unstable · sourceimpl Rem<f64> for f64
impl Rem<f64> for f64
The remainder from the division of two floats.
The remainder has the same sign as the dividend and is computed as:
x - (x / y).trunc() * y
.
Examples
let x: f32 = 50.50;
let y: f32 = 8.125;
let remainder = x - (x / y).trunc() * y;
// The answer to both operations is 1.75
assert_eq!(x % y, remainder);
sourceimpl<'a> Rem<Saturating<i16>> for &'a Saturating<i16>
impl<'a> Rem<Saturating<i16>> for &'a Saturating<i16>
type Output = <Saturating<i16> as Rem<Saturating<i16>>>::Output
pub fn rem(
self,
other: Saturating<i16>
) -> <Saturating<i16> as Rem<Saturating<i16>>>::Output
sourceimpl Rem<Saturating<usize>> for Saturating<usize>
impl Rem<Saturating<usize>> for Saturating<usize>
type Output = Saturating<usize>
pub fn rem(self, other: Saturating<usize>) -> Saturating<usize>
sourceimpl<'a> Rem<Saturating<usize>> for &'a Saturating<usize>
impl<'a> Rem<Saturating<usize>> for &'a Saturating<usize>
type Output = <Saturating<usize> as Rem<Saturating<usize>>>::Output
pub fn rem(
self,
other: Saturating<usize>
) -> <Saturating<usize> as Rem<Saturating<usize>>>::Output
const: unstable · sourceimpl Rem<u8> for u8
impl Rem<u8> for u8
This operation satisfies n % d == n - (n / d) * d
. The
result has the same sign as the left operand.
Panics
This operation will panic if other == 0
.
sourceimpl Rem<&'_ Saturating<u8>> for Saturating<u8>
impl Rem<&'_ Saturating<u8>> for Saturating<u8>
type Output = <Saturating<u8> as Rem<Saturating<u8>>>::Output
pub fn rem(
self,
other: &Saturating<u8>
) -> <Saturating<u8> as Rem<Saturating<u8>>>::Output
1.51.0 (const: unstable) · sourceimpl Rem<NonZeroU16> for u16
impl Rem<NonZeroU16> for u16
const: unstable · sourceimpl Rem<i64> for i64
impl Rem<i64> for i64
This operation satisfies n % d == n - (n / d) * d
. The
result has the same sign as the left operand.
Panics
This operation will panic if other == 0
or if self / other
results in overflow.