Trait nom::lib::std::ops::Rem 1.0.0[−][src]
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
impl Rem<NonZeroU128> for u128
[src]
impl Rem<NonZeroU128> for u128
[src]impl<'_, '_> Rem<&'_ i16> for &'_ i16
[src]
impl<'_, '_> Rem<&'_ i16> for &'_ i16
[src]impl<'_> Rem<&'_ Wrapping<i128>> for Wrapping<i128>
[src]
impl<'_> Rem<&'_ Wrapping<i128>> for Wrapping<i128>
[src]impl<'_> Rem<&'_ Wrapping<i8>> for Wrapping<i8>
[src]
impl<'_> Rem<&'_ Wrapping<i8>> for Wrapping<i8>
[src]impl Rem<Wrapping<i8>> for Wrapping<i8>
[src]
impl Rem<Wrapping<i8>> for Wrapping<i8>
[src]impl<'_, '_> Rem<&'_ u128> for &'_ u128
[src]
impl<'_, '_> Rem<&'_ u128> for &'_ u128
[src]impl<'a> Rem<Wrapping<u32>> for &'a Wrapping<u32>
[src]
impl<'a> Rem<Wrapping<u32>> for &'a Wrapping<u32>
[src]impl<'_, '_> Rem<&'_ Wrapping<u64>> for &'_ Wrapping<u64>
[src]
impl<'_, '_> Rem<&'_ Wrapping<u64>> for &'_ Wrapping<u64>
[src]impl<'_, '_> Rem<&'_ i64> for &'_ i64
[src]
impl<'_, '_> Rem<&'_ i64> for &'_ i64
[src]impl<'_, '_> Rem<&'_ Wrapping<u32>> for &'_ Wrapping<u32>
[src]
impl<'_, '_> Rem<&'_ Wrapping<u32>> for &'_ Wrapping<u32>
[src]impl<'a> Rem<Wrapping<isize>> for &'a Wrapping<isize>
[src]
impl<'a> Rem<Wrapping<isize>> for &'a Wrapping<isize>
[src]impl<'_> Rem<&'_ Wrapping<usize>> for Wrapping<usize>
[src]
impl<'_> Rem<&'_ Wrapping<usize>> for Wrapping<usize>
[src]impl<'_, '_> Rem<&'_ usize> for &'_ usize
[src]
impl<'_, '_> Rem<&'_ usize> for &'_ usize
[src]impl<'a> Rem<u64> for &'a u64
[src]
impl<'a> Rem<u64> for &'a u64
[src]impl Rem<u128> for u128
[src]
impl Rem<u128> for u128
[src]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
.
impl<'a> Rem<Wrapping<i64>> for &'a Wrapping<i64>
[src]
impl<'a> Rem<Wrapping<i64>> for &'a Wrapping<i64>
[src]impl<'_> Rem<&'_ u8> for u8
[src]
impl<'_> Rem<&'_ u8> for u8
[src]impl Rem<i32> for i32
[src]
impl Rem<i32> for i32
[src]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.
impl Rem<u32> for u32
[src]
impl Rem<u32> for u32
[src]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
.
impl<'_> Rem<&'_ f32> for f32
[src]
impl<'_> Rem<&'_ f32> for f32
[src]impl<'_, '_> Rem<&'_ Wrapping<i128>> for &'_ Wrapping<i128>
[src]
impl<'_, '_> Rem<&'_ Wrapping<i128>> for &'_ Wrapping<i128>
[src]impl Rem<Wrapping<u8>> for Wrapping<u8>
[src]
impl Rem<Wrapping<u8>> for Wrapping<u8>
[src]impl<'_> Rem<&'_ i128> for i128
[src]
impl<'_> Rem<&'_ i128> for i128
[src]impl<'_, '_> Rem<&'_ Wrapping<u16>> for &'_ Wrapping<u16>
[src]
impl<'_, '_> Rem<&'_ Wrapping<u16>> for &'_ Wrapping<u16>
[src]impl Rem<u8> for u8
[src]
impl Rem<u8> for u8
[src]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
.
impl<'a> Rem<Wrapping<u128>> for &'a Wrapping<u128>
[src]
impl<'a> Rem<Wrapping<u128>> for &'a Wrapping<u128>
[src]impl<'_> Rem<&'_ Wrapping<u32>> for Wrapping<u32>
[src]
impl<'_> Rem<&'_ Wrapping<u32>> for Wrapping<u32>
[src]impl Rem<u16> for u16
[src]
impl Rem<u16> for u16
[src]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
.
impl<'_> Rem<&'_ Wrapping<isize>> for Wrapping<isize>
[src]
impl<'_> Rem<&'_ Wrapping<isize>> for Wrapping<isize>
[src]impl Rem<Wrapping<u128>> for Wrapping<u128>
[src]
impl Rem<Wrapping<u128>> for Wrapping<u128>
[src]impl Rem<NonZeroUsize> for usize
[src]
impl Rem<NonZeroUsize> for usize
[src]impl<'_, '_> Rem<&'_ u16> for &'_ u16
[src]
impl<'_, '_> Rem<&'_ u16> for &'_ u16
[src]impl Rem<Wrapping<i16>> for Wrapping<i16>
[src]
impl Rem<Wrapping<i16>> for Wrapping<i16>
[src]impl<'_> Rem<&'_ u128> for u128
[src]
impl<'_> Rem<&'_ u128> for u128
[src]impl Rem<Wrapping<usize>> for Wrapping<usize>
[src]
impl Rem<Wrapping<usize>> for Wrapping<usize>
[src]impl<'a> Rem<Wrapping<i8>> for &'a Wrapping<i8>
[src]
impl<'a> Rem<Wrapping<i8>> for &'a Wrapping<i8>
[src]impl<'a> Rem<i128> for &'a i128
[src]
impl<'a> Rem<i128> for &'a i128
[src]impl Rem<i64> for i64
[src]
impl Rem<i64> for i64
[src]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.
impl<'_, '_> Rem<&'_ Wrapping<isize>> for &'_ Wrapping<isize>
[src]
impl<'_, '_> Rem<&'_ Wrapping<isize>> for &'_ Wrapping<isize>
[src]impl<'_, '_> Rem<&'_ u64> for &'_ u64
[src]
impl<'_, '_> Rem<&'_ u64> for &'_ u64
[src]impl<'a> Rem<Wrapping<u64>> for &'a Wrapping<u64>
[src]
impl<'a> Rem<Wrapping<u64>> for &'a Wrapping<u64>
[src]impl Rem<isize> for isize
[src]
impl Rem<isize> for isize
[src]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.
impl<'a> Rem<Wrapping<i128>> for &'a Wrapping<i128>
[src]
impl<'a> Rem<Wrapping<i128>> for &'a Wrapping<i128>
[src]impl Rem<Wrapping<i32>> for Wrapping<i32>
[src]
impl Rem<Wrapping<i32>> for Wrapping<i32>
[src]impl<'_> Rem<&'_ u32> for u32
[src]
impl<'_> Rem<&'_ u32> for u32
[src]impl Rem<i16> for i16
[src]
impl Rem<i16> for i16
[src]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.
impl<'_> Rem<&'_ Wrapping<i64>> for Wrapping<i64>
[src]
impl<'_> Rem<&'_ Wrapping<i64>> for Wrapping<i64>
[src]impl<'_> Rem<&'_ isize> for isize
[src]
impl<'_> Rem<&'_ isize> for isize
[src]impl<'a> Rem<i8> for &'a i8
[src]
impl<'a> Rem<i8> for &'a i8
[src]impl<'_> Rem<&'_ u64> for u64
[src]
impl<'_> Rem<&'_ u64> for u64
[src]impl<'a> Rem<f32> for &'a f32
[src]
impl<'a> Rem<f32> for &'a f32
[src]impl Rem<Wrapping<u64>> for Wrapping<u64>
[src]
impl Rem<Wrapping<u64>> for Wrapping<u64>
[src]impl<'_, '_> Rem<&'_ f64> for &'_ f64
[src]
impl<'_, '_> Rem<&'_ f64> for &'_ f64
[src]impl<'_> Rem<&'_ Wrapping<i32>> for Wrapping<i32>
[src]
impl<'_> Rem<&'_ Wrapping<i32>> for Wrapping<i32>
[src]impl<'_, '_> Rem<&'_ Wrapping<usize>> for &'_ Wrapping<usize>
[src]
impl<'_, '_> Rem<&'_ Wrapping<usize>> for &'_ Wrapping<usize>
[src]impl<'_> Rem<&'_ u16> for u16
[src]
impl<'_> Rem<&'_ u16> for u16
[src]impl<'a> Rem<usize> for &'a usize
[src]
impl<'a> Rem<usize> for &'a usize
[src]impl<'_, '_> Rem<&'_ Wrapping<i32>> for &'_ Wrapping<i32>
[src]
impl<'_, '_> Rem<&'_ Wrapping<i32>> for &'_ Wrapping<i32>
[src]impl<'_> Rem<&'_ i64> for i64
[src]
impl<'_> Rem<&'_ i64> for i64
[src]impl<'a> Rem<i16> for &'a i16
[src]
impl<'a> Rem<i16> for &'a i16
[src]impl Rem<Wrapping<isize>> for Wrapping<isize>
[src]
impl Rem<Wrapping<isize>> for Wrapping<isize>
[src]impl Rem<Wrapping<i128>> for Wrapping<i128>
[src]
impl Rem<Wrapping<i128>> for Wrapping<i128>
[src]impl Rem<NonZeroU8> for u8
[src]
impl Rem<NonZeroU8> for u8
[src]impl<'a> Rem<i32> for &'a i32
[src]
impl<'a> Rem<i32> for &'a i32
[src]impl<'_> Rem<&'_ Wrapping<u8>> for Wrapping<u8>
[src]
impl<'_> Rem<&'_ Wrapping<u8>> for Wrapping<u8>
[src]impl<'_> Rem<&'_ i8> for i8
[src]
impl<'_> Rem<&'_ i8> for i8
[src]impl Rem<i128> for i128
[src]
impl Rem<i128> for i128
[src]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.
impl Rem<NonZeroU64> for u64
[src]
impl Rem<NonZeroU64> for u64
[src]impl<'_> Rem<&'_ Wrapping<u16>> for Wrapping<u16>
[src]
impl<'_> Rem<&'_ Wrapping<u16>> for Wrapping<u16>
[src]impl<'a> Rem<Wrapping<usize>> for &'a Wrapping<usize>
[src]
impl<'a> Rem<Wrapping<usize>> for &'a Wrapping<usize>
[src]impl<'_, '_> Rem<&'_ f32> for &'_ f32
[src]
impl<'_, '_> Rem<&'_ f32> for &'_ f32
[src]impl<'a> Rem<Wrapping<i32>> for &'a Wrapping<i32>
[src]
impl<'a> Rem<Wrapping<i32>> for &'a Wrapping<i32>
[src]impl<'_> Rem<&'_ Wrapping<u64>> for Wrapping<u64>
[src]
impl<'_> Rem<&'_ Wrapping<u64>> for Wrapping<u64>
[src]impl<'_, '_> Rem<&'_ i128> for &'_ i128
[src]
impl<'_, '_> Rem<&'_ i128> for &'_ i128
[src]impl<'a> Rem<f64> for &'a f64
[src]
impl<'a> Rem<f64> for &'a f64
[src]impl<'_, '_> Rem<&'_ Wrapping<i64>> for &'_ Wrapping<i64>
[src]
impl<'_, '_> Rem<&'_ Wrapping<i64>> for &'_ Wrapping<i64>
[src]impl Rem<u64> for u64
[src]
impl Rem<u64> for u64
[src]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
.
impl<'a> Rem<u8> for &'a u8
[src]
impl<'a> Rem<u8> for &'a u8
[src]impl<'a> Rem<u16> for &'a u16
[src]
impl<'a> Rem<u16> for &'a u16
[src]impl Rem<Wrapping<i64>> for Wrapping<i64>
[src]
impl Rem<Wrapping<i64>> for Wrapping<i64>
[src]impl<'_> Rem<&'_ i32> for i32
[src]
impl<'_> Rem<&'_ i32> for i32
[src]impl<'a> Rem<u128> for &'a u128
[src]
impl<'a> Rem<u128> for &'a u128
[src]impl Rem<Wrapping<u16>> for Wrapping<u16>
[src]
impl Rem<Wrapping<u16>> for Wrapping<u16>
[src]impl Rem<f64> for f64
[src]
impl Rem<f64> for f64
[src]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);
impl<'a> Rem<Wrapping<u16>> for &'a Wrapping<u16>
[src]
impl<'a> Rem<Wrapping<u16>> for &'a Wrapping<u16>
[src]impl Rem<i8> for i8
[src]
impl Rem<i8> for i8
[src]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.
impl<'_> Rem<&'_ Wrapping<u128>> for Wrapping<u128>
[src]
impl<'_> Rem<&'_ Wrapping<u128>> for Wrapping<u128>
[src]impl Rem<f32> for f32
[src]
impl Rem<f32> for f32
[src]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);
impl<'_, '_> Rem<&'_ Wrapping<u128>> for &'_ Wrapping<u128>
[src]
impl<'_, '_> Rem<&'_ Wrapping<u128>> for &'_ Wrapping<u128>
[src]impl<'_, '_> Rem<&'_ isize> for &'_ isize
[src]
impl<'_, '_> Rem<&'_ isize> for &'_ isize
[src]impl Rem<NonZeroU32> for u32
[src]
impl Rem<NonZeroU32> for u32
[src]impl Rem<Wrapping<u32>> for Wrapping<u32>
[src]
impl Rem<Wrapping<u32>> for Wrapping<u32>
[src]impl<'a> Rem<u32> for &'a u32
[src]
impl<'a> Rem<u32> for &'a u32
[src]impl<'a> Rem<isize> for &'a isize
[src]
impl<'a> Rem<isize> for &'a isize
[src]impl<'_, '_> Rem<&'_ u32> for &'_ u32
[src]
impl<'_, '_> Rem<&'_ u32> for &'_ u32
[src]impl<'_> Rem<&'_ Wrapping<i16>> for Wrapping<i16>
[src]
impl<'_> Rem<&'_ Wrapping<i16>> for Wrapping<i16>
[src]impl<'_, '_> Rem<&'_ Wrapping<i16>> for &'_ Wrapping<i16>
[src]
impl<'_, '_> Rem<&'_ Wrapping<i16>> for &'_ Wrapping<i16>
[src]impl<'a> Rem<Wrapping<i16>> for &'a Wrapping<i16>
[src]
impl<'a> Rem<Wrapping<i16>> for &'a Wrapping<i16>
[src]impl<'_> Rem<&'_ usize> for usize
[src]
impl<'_> Rem<&'_ usize> for usize
[src]impl<'_, '_> Rem<&'_ i32> for &'_ i32
[src]
impl<'_, '_> Rem<&'_ i32> for &'_ i32
[src]impl<'a> Rem<Wrapping<u8>> for &'a Wrapping<u8>
[src]
impl<'a> Rem<Wrapping<u8>> for &'a Wrapping<u8>
[src]impl<'a> Rem<i64> for &'a i64
[src]
impl<'a> Rem<i64> for &'a i64
[src]impl Rem<NonZeroU16> for u16
[src]
impl Rem<NonZeroU16> for u16
[src]impl<'_, '_> Rem<&'_ Wrapping<i8>> for &'_ Wrapping<i8>
[src]
impl<'_, '_> Rem<&'_ Wrapping<i8>> for &'_ Wrapping<i8>
[src]impl Rem<usize> for usize
[src]
impl Rem<usize> for usize
[src]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
.
impl<'_, '_> Rem<&'_ u8> for &'_ u8
[src]
impl<'_, '_> Rem<&'_ u8> for &'_ u8
[src]impl<'_, '_> Rem<&'_ Wrapping<u8>> for &'_ Wrapping<u8>
[src]
impl<'_, '_> Rem<&'_ Wrapping<u8>> for &'_ Wrapping<u8>
[src]impl<'_, '_> Rem<&'_ i8> for &'_ i8
[src]
impl<'_, '_> Rem<&'_ i8> for &'_ i8
[src]impl<'_> Rem<&'_ f64> for f64
[src]
impl<'_> Rem<&'_ f64> for f64
[src]impl<'_> Rem<&'_ i16> for i16
[src]
impl<'_> Rem<&'_ i16> for i16
[src]Implementors
impl<'a, 'b, T: Clone + Num> Rem<&'b Complex<T>> for &'a Complex<T>
impl<'a, 'b, T: Clone + Num> Rem<&'b Complex<T>> for &'a Complex<T>
impl<'a, T: Clone + Num> Rem<Complex<T>> for &'a Complex<T>
impl<'a, T: Clone + Num> Rem<Complex<T>> for &'a Complex<T>
impl<'a, T: Clone + Num> Rem<&'a Complex<T>> for Complex<T>
impl<'a, T: Clone + Num> Rem<&'a Complex<T>> for Complex<T>
impl<T: Clone + Num> Rem<Complex<T>> for Complex<T>
impl<T: Clone + Num> Rem<Complex<T>> for Complex<T>
impl<T: Clone + Num> Rem<T> for Complex<T>
impl<T: Clone + Num> Rem<T> for Complex<T>
impl<'a, T: Clone + Num> Rem<&'a T> for Complex<T>
impl<'a, T: Clone + Num> Rem<&'a T> for Complex<T>
impl<'a, T: Clone + Num> Rem<T> for &'a Complex<T>
impl<'a, T: Clone + Num> Rem<T> for &'a Complex<T>
impl<'a, 'b, T: Clone + Num> Rem<&'a T> for &'b Complex<T>
impl<'a, 'b, T: Clone + Num> Rem<&'a T> for &'b Complex<T>
impl<'a> Rem<&'a Complex<usize>> for usize
impl<'a> Rem<&'a Complex<usize>> for usize
impl<'a> Rem<Complex<usize>> for &'a usize
impl<'a> Rem<Complex<usize>> for &'a usize
impl<'a, 'b> Rem<&'a Complex<usize>> for &'b usize
impl<'a, 'b> Rem<&'a Complex<usize>> for &'b usize
impl<'a> Rem<&'a Complex<u8>> for u8
impl<'a> Rem<&'a Complex<u8>> for u8
impl<'a> Rem<Complex<u8>> for &'a u8
impl<'a> Rem<Complex<u8>> for &'a u8
impl<'a, 'b> Rem<&'a Complex<u8>> for &'b u8
impl<'a, 'b> Rem<&'a Complex<u8>> for &'b u8
impl<'a> Rem<&'a Complex<u16>> for u16
impl<'a> Rem<&'a Complex<u16>> for u16
impl<'a> Rem<Complex<u16>> for &'a u16
impl<'a> Rem<Complex<u16>> for &'a u16
impl<'a, 'b> Rem<&'a Complex<u16>> for &'b u16
impl<'a, 'b> Rem<&'a Complex<u16>> for &'b u16
impl<'a> Rem<&'a Complex<u32>> for u32
impl<'a> Rem<&'a Complex<u32>> for u32
impl<'a> Rem<Complex<u32>> for &'a u32
impl<'a> Rem<Complex<u32>> for &'a u32
impl<'a, 'b> Rem<&'a Complex<u32>> for &'b u32
impl<'a, 'b> Rem<&'a Complex<u32>> for &'b u32
impl<'a> Rem<&'a Complex<u64>> for u64
impl<'a> Rem<&'a Complex<u64>> for u64
impl<'a> Rem<Complex<u64>> for &'a u64
impl<'a> Rem<Complex<u64>> for &'a u64
impl<'a, 'b> Rem<&'a Complex<u64>> for &'b u64
impl<'a, 'b> Rem<&'a Complex<u64>> for &'b u64
impl<'a> Rem<&'a Complex<u128>> for u128
impl<'a> Rem<&'a Complex<u128>> for u128
impl<'a> Rem<Complex<u128>> for &'a u128
impl<'a> Rem<Complex<u128>> for &'a u128
impl<'a, 'b> Rem<&'a Complex<u128>> for &'b u128
impl<'a, 'b> Rem<&'a Complex<u128>> for &'b u128
impl<'a> Rem<&'a Complex<isize>> for isize
impl<'a> Rem<&'a Complex<isize>> for isize
impl<'a> Rem<Complex<isize>> for &'a isize
impl<'a> Rem<Complex<isize>> for &'a isize
impl<'a, 'b> Rem<&'a Complex<isize>> for &'b isize
impl<'a, 'b> Rem<&'a Complex<isize>> for &'b isize
impl<'a> Rem<&'a Complex<i8>> for i8
impl<'a> Rem<&'a Complex<i8>> for i8
impl<'a> Rem<Complex<i8>> for &'a i8
impl<'a> Rem<Complex<i8>> for &'a i8
impl<'a, 'b> Rem<&'a Complex<i8>> for &'b i8
impl<'a, 'b> Rem<&'a Complex<i8>> for &'b i8
impl<'a> Rem<&'a Complex<i16>> for i16
impl<'a> Rem<&'a Complex<i16>> for i16
impl<'a> Rem<Complex<i16>> for &'a i16
impl<'a> Rem<Complex<i16>> for &'a i16
impl<'a, 'b> Rem<&'a Complex<i16>> for &'b i16
impl<'a, 'b> Rem<&'a Complex<i16>> for &'b i16
impl<'a> Rem<&'a Complex<i32>> for i32
impl<'a> Rem<&'a Complex<i32>> for i32
impl<'a> Rem<Complex<i32>> for &'a i32
impl<'a> Rem<Complex<i32>> for &'a i32
impl<'a, 'b> Rem<&'a Complex<i32>> for &'b i32
impl<'a, 'b> Rem<&'a Complex<i32>> for &'b i32
impl<'a> Rem<&'a Complex<i64>> for i64
impl<'a> Rem<&'a Complex<i64>> for i64
impl<'a> Rem<Complex<i64>> for &'a i64
impl<'a> Rem<Complex<i64>> for &'a i64
impl<'a, 'b> Rem<&'a Complex<i64>> for &'b i64
impl<'a, 'b> Rem<&'a Complex<i64>> for &'b i64
impl<'a> Rem<&'a Complex<i128>> for i128
impl<'a> Rem<&'a Complex<i128>> for i128
impl<'a> Rem<Complex<i128>> for &'a i128
impl<'a> Rem<Complex<i128>> for &'a i128
impl<'a, 'b> Rem<&'a Complex<i128>> for &'b i128
impl<'a, 'b> Rem<&'a Complex<i128>> for &'b i128
impl<'a> Rem<&'a Complex<f32>> for f32
impl<'a> Rem<&'a Complex<f32>> for f32
impl<'a> Rem<Complex<f32>> for &'a f32
impl<'a> Rem<Complex<f32>> for &'a f32
impl<'a, 'b> Rem<&'a Complex<f32>> for &'b f32
impl<'a, 'b> Rem<&'a Complex<f32>> for &'b f32
impl<'a> Rem<&'a Complex<f64>> for f64
impl<'a> Rem<&'a Complex<f64>> for f64
impl<'a> Rem<Complex<f64>> for &'a f64
impl<'a> Rem<Complex<f64>> for &'a f64
impl<'a, 'b> Rem<&'a Complex<f64>> for &'b f64
impl<'a, 'b> Rem<&'a Complex<f64>> for &'b f64
impl Rem<Complex<usize>> for usize
impl Rem<Complex<usize>> for usize
impl Rem<Complex<u8>> for u8
impl Rem<Complex<u8>> for u8
impl Rem<Complex<u16>> for u16
impl Rem<Complex<u16>> for u16
impl Rem<Complex<u32>> for u32
impl Rem<Complex<u32>> for u32
impl Rem<Complex<u64>> for u64
impl Rem<Complex<u64>> for u64
impl Rem<Complex<u128>> for u128
impl Rem<Complex<u128>> for u128
impl Rem<Complex<isize>> for isize
impl Rem<Complex<isize>> for isize
impl Rem<Complex<i8>> for i8
impl Rem<Complex<i8>> for i8
impl Rem<Complex<i16>> for i16
impl Rem<Complex<i16>> for i16
impl Rem<Complex<i32>> for i32
impl Rem<Complex<i32>> for i32
impl Rem<Complex<i64>> for i64
impl Rem<Complex<i64>> for i64
impl Rem<Complex<i128>> for i128
impl Rem<Complex<i128>> for i128
impl Rem<Complex<f32>> for f32
impl Rem<Complex<f32>> for f32
impl Rem<Complex<f64>> for f64
impl Rem<Complex<f64>> for f64
impl<'a, 'b, T: Clone + Integer> Rem<&'b Ratio<T>> for &'a Ratio<T>
impl<'a, 'b, T: Clone + Integer> Rem<&'b Ratio<T>> for &'a Ratio<T>
impl<'a, 'b, T: Clone + Integer> Rem<&'b T> for &'a Ratio<T>
impl<'a, 'b, T: Clone + Integer> Rem<&'b T> for &'a Ratio<T>
impl<'a, T> Rem<Ratio<T>> for &'a Ratio<T> where
T: Clone + Integer,
impl<'a, T> Rem<Ratio<T>> for &'a Ratio<T> where
T: Clone + Integer,
impl<'a, T> Rem<T> for &'a Ratio<T> where
T: Clone + Integer,
impl<'a, T> Rem<T> for &'a Ratio<T> where
T: Clone + Integer,
impl<'a, T> Rem<&'a Ratio<T>> for Ratio<T> where
T: Clone + Integer,
impl<'a, T> Rem<&'a Ratio<T>> for Ratio<T> where
T: Clone + Integer,
impl<'a, T> Rem<&'a T> for Ratio<T> where
T: Clone + Integer,
impl<'a, T> Rem<&'a T> for Ratio<T> where
T: Clone + Integer,
impl<T: Clone + Integer> Rem<Ratio<T>> for Ratio<T>
impl<T: Clone + Integer> Rem<Ratio<T>> for Ratio<T>
impl<T: Clone + Integer> Rem<T> for Ratio<T>
impl<T: Clone + Integer> Rem<T> for Ratio<T>
impl<'a, Rhs> Rem<Rhs> for &'a U128 where
Rhs: Into<U128>,
impl<'a, Rhs> Rem<Rhs> for &'a U128 where
Rhs: Into<U128>,
impl<Rhs> Rem<Rhs> for U128 where
Rhs: Into<U128>,
impl<Rhs> Rem<Rhs> for U128 where
Rhs: Into<U128>,
impl<'a, 'b> Rem<&'b U128> for &'a U128
impl<'a, 'b> Rem<&'b U128> for &'a U128
impl<'a> Rem<&'a U128> for U128
impl<'a> Rem<&'a U128> for U128
impl<'a, Rhs> Rem<Rhs> for &'a U160 where
Rhs: Into<U160>,
impl<'a, Rhs> Rem<Rhs> for &'a U160 where
Rhs: Into<U160>,
impl<Rhs> Rem<Rhs> for U160 where
Rhs: Into<U160>,
impl<Rhs> Rem<Rhs> for U160 where
Rhs: Into<U160>,
impl<'a, 'b> Rem<&'b U160> for &'a U160
impl<'a, 'b> Rem<&'b U160> for &'a U160
impl<'a> Rem<&'a U160> for U160
impl<'a> Rem<&'a U160> for U160
impl<'a, Rhs> Rem<Rhs> for &'a U224 where
Rhs: Into<U224>,
impl<'a, Rhs> Rem<Rhs> for &'a U224 where
Rhs: Into<U224>,
impl<Rhs> Rem<Rhs> for U224 where
Rhs: Into<U224>,
impl<Rhs> Rem<Rhs> for U224 where
Rhs: Into<U224>,
impl<'a, 'b> Rem<&'b U224> for &'a U224
impl<'a, 'b> Rem<&'b U224> for &'a U224
impl<'a> Rem<&'a U224> for U224
impl<'a> Rem<&'a U224> for U224
impl<'a, Rhs> Rem<Rhs> for &'a U256 where
Rhs: Into<U256>,
impl<'a, Rhs> Rem<Rhs> for &'a U256 where
Rhs: Into<U256>,
impl<Rhs> Rem<Rhs> for U256 where
Rhs: Into<U256>,
impl<Rhs> Rem<Rhs> for U256 where
Rhs: Into<U256>,
impl<'a, 'b> Rem<&'b U256> for &'a U256
impl<'a, 'b> Rem<&'b U256> for &'a U256
impl<'a> Rem<&'a U256> for U256
impl<'a> Rem<&'a U256> for U256
impl<'a, Rhs> Rem<Rhs> for &'a U384 where
Rhs: Into<U384>,
impl<'a, Rhs> Rem<Rhs> for &'a U384 where
Rhs: Into<U384>,
impl<Rhs> Rem<Rhs> for U384 where
Rhs: Into<U384>,
impl<Rhs> Rem<Rhs> for U384 where
Rhs: Into<U384>,
impl<'a, 'b> Rem<&'b U384> for &'a U384
impl<'a, 'b> Rem<&'b U384> for &'a U384
impl<'a> Rem<&'a U384> for U384
impl<'a> Rem<&'a U384> for U384
impl<'a, Rhs> Rem<Rhs> for &'a U512 where
Rhs: Into<U512>,
impl<'a, Rhs> Rem<Rhs> for &'a U512 where
Rhs: Into<U512>,
impl<Rhs> Rem<Rhs> for U512 where
Rhs: Into<U512>,
impl<Rhs> Rem<Rhs> for U512 where
Rhs: Into<U512>,
impl<'a, 'b> Rem<&'b U512> for &'a U512
impl<'a, 'b> Rem<&'b U512> for &'a U512
impl<'a> Rem<&'a U512> for U512
impl<'a> Rem<&'a U512> for U512
impl<'a, Rhs> Rem<Rhs> for &'a U520 where
Rhs: Into<U520>,
impl<'a, Rhs> Rem<Rhs> for &'a U520 where
Rhs: Into<U520>,
impl<Rhs> Rem<Rhs> for U520 where
Rhs: Into<U520>,
impl<Rhs> Rem<Rhs> for U520 where
Rhs: Into<U520>,
impl<'a, 'b> Rem<&'b U520> for &'a U520
impl<'a, 'b> Rem<&'b U520> for &'a U520
impl<'a> Rem<&'a U520> for U520
impl<'a> Rem<&'a U520> for U520
impl<'a, Rhs> Rem<Rhs> for &'a U1024 where
Rhs: Into<U1024>,
impl<'a, Rhs> Rem<Rhs> for &'a U1024 where
Rhs: Into<U1024>,
impl<Rhs> Rem<Rhs> for U1024 where
Rhs: Into<U1024>,
impl<Rhs> Rem<Rhs> for U1024 where
Rhs: Into<U1024>,
impl<'a, 'b> Rem<&'b U1024> for &'a U1024
impl<'a, 'b> Rem<&'b U1024> for &'a U1024
impl<'a> Rem<&'a U1024> for U1024
impl<'a> Rem<&'a U1024> for U1024
impl<'a, Rhs> Rem<Rhs> for &'a U2048 where
Rhs: Into<U2048>,
impl<'a, Rhs> Rem<Rhs> for &'a U2048 where
Rhs: Into<U2048>,
impl<Rhs> Rem<Rhs> for U2048 where
Rhs: Into<U2048>,
impl<Rhs> Rem<Rhs> for U2048 where
Rhs: Into<U2048>,
impl<'a, 'b> Rem<&'b U2048> for &'a U2048
impl<'a, 'b> Rem<&'b U2048> for &'a U2048
impl<'a> Rem<&'a U2048> for U2048
impl<'a> Rem<&'a U2048> for U2048
impl<'a, Rhs> Rem<Rhs> for &'a U4096 where
Rhs: Into<U4096>,
impl<'a, Rhs> Rem<Rhs> for &'a U4096 where
Rhs: Into<U4096>,
impl<Rhs> Rem<Rhs> for U4096 where
Rhs: Into<U4096>,
impl<Rhs> Rem<Rhs> for U4096 where
Rhs: Into<U4096>,
impl<'a, 'b> Rem<&'b U4096> for &'a U4096
impl<'a, 'b> Rem<&'b U4096> for &'a U4096
impl<'a> Rem<&'a U4096> for U4096
impl<'a> Rem<&'a U4096> for U4096
impl<'a, T: Rem + Clone> Rem<Property<'a, T>> for Property<'a, T> where
<T as Rem>::Output: Clone,
impl<'a, T: Rem + Clone> Rem<Property<'a, T>> for Property<'a, T> where
<T as Rem>::Output: Clone,
impl<'a, T: Rem + Clone> Rem<T> for Property<'a, T> where
<T as Rem>::Output: Clone,
impl<'a, T: Rem + Clone> Rem<T> for Property<'a, T> where
<T as Rem>::Output: Clone,
impl<'a, T: Rem + Clone> Rem<PropertyLastValue<'a, T>> for PropertyLastValue<'a, T> where
<T as Rem>::Output: Clone,
impl<'a, T: Rem + Clone> Rem<PropertyLastValue<'a, T>> for PropertyLastValue<'a, T> where
<T as Rem>::Output: Clone,
impl<'a, T: Rem + Clone> Rem<T> for PropertyLastValue<'a, T> where
<T as Rem>::Output: Clone,
impl<'a, T: Rem + Clone> Rem<T> for PropertyLastValue<'a, T> where
<T as Rem>::Output: Clone,
impl Rem<AutoSimd<[f32; 2]>> for AutoSimd<[f32; 2]>
impl Rem<AutoSimd<[f32; 2]>> for AutoSimd<[f32; 2]>
impl Rem<AutoSimd<[f32; 4]>> for AutoSimd<[f32; 4]>
impl Rem<AutoSimd<[f32; 4]>> for AutoSimd<[f32; 4]>
impl Rem<AutoSimd<[f32; 8]>> for AutoSimd<[f32; 8]>
impl Rem<AutoSimd<[f32; 8]>> for AutoSimd<[f32; 8]>
impl Rem<AutoSimd<[f32; 16]>> for AutoSimd<[f32; 16]>
impl Rem<AutoSimd<[f32; 16]>> for AutoSimd<[f32; 16]>
impl Rem<AutoSimd<[f64; 2]>> for AutoSimd<[f64; 2]>
impl Rem<AutoSimd<[f64; 2]>> for AutoSimd<[f64; 2]>
impl Rem<AutoSimd<[f64; 4]>> for AutoSimd<[f64; 4]>
impl Rem<AutoSimd<[f64; 4]>> for AutoSimd<[f64; 4]>
impl Rem<AutoSimd<[f64; 8]>> for AutoSimd<[f64; 8]>
impl Rem<AutoSimd<[f64; 8]>> for AutoSimd<[f64; 8]>
impl Rem<AutoSimd<[i128; 1]>> for AutoSimd<[i128; 1]>
impl Rem<AutoSimd<[i128; 1]>> for AutoSimd<[i128; 1]>
impl Rem<AutoSimd<[i128; 2]>> for AutoSimd<[i128; 2]>
impl Rem<AutoSimd<[i128; 2]>> for AutoSimd<[i128; 2]>
impl Rem<AutoSimd<[i128; 4]>> for AutoSimd<[i128; 4]>
impl Rem<AutoSimd<[i128; 4]>> for AutoSimd<[i128; 4]>
impl Rem<AutoSimd<[i16; 2]>> for AutoSimd<[i16; 2]>
impl Rem<AutoSimd<[i16; 2]>> for AutoSimd<[i16; 2]>
impl Rem<AutoSimd<[i16; 4]>> for AutoSimd<[i16; 4]>
impl Rem<AutoSimd<[i16; 4]>> for AutoSimd<[i16; 4]>
impl Rem<AutoSimd<[i16; 8]>> for AutoSimd<[i16; 8]>
impl Rem<AutoSimd<[i16; 8]>> for AutoSimd<[i16; 8]>
impl Rem<AutoSimd<[i16; 16]>> for AutoSimd<[i16; 16]>
impl Rem<AutoSimd<[i16; 16]>> for AutoSimd<[i16; 16]>
impl Rem<AutoSimd<[i16; 32]>> for AutoSimd<[i16; 32]>
impl Rem<AutoSimd<[i16; 32]>> for AutoSimd<[i16; 32]>
impl Rem<AutoSimd<[i32; 2]>> for AutoSimd<[i32; 2]>
impl Rem<AutoSimd<[i32; 2]>> for AutoSimd<[i32; 2]>
impl Rem<AutoSimd<[i32; 4]>> for AutoSimd<[i32; 4]>
impl Rem<AutoSimd<[i32; 4]>> for AutoSimd<[i32; 4]>
impl Rem<AutoSimd<[i32; 8]>> for AutoSimd<[i32; 8]>
impl Rem<AutoSimd<[i32; 8]>> for AutoSimd<[i32; 8]>
impl Rem<AutoSimd<[i32; 16]>> for AutoSimd<[i32; 16]>
impl Rem<AutoSimd<[i32; 16]>> for AutoSimd<[i32; 16]>
impl Rem<AutoSimd<[i64; 2]>> for AutoSimd<[i64; 2]>
impl Rem<AutoSimd<[i64; 2]>> for AutoSimd<[i64; 2]>
impl Rem<AutoSimd<[i64; 4]>> for AutoSimd<[i64; 4]>
impl Rem<AutoSimd<[i64; 4]>> for AutoSimd<[i64; 4]>
impl Rem<AutoSimd<[i64; 8]>> for AutoSimd<[i64; 8]>
impl Rem<AutoSimd<[i64; 8]>> for AutoSimd<[i64; 8]>
impl Rem<AutoSimd<[i8; 2]>> for AutoSimd<[i8; 2]>
impl Rem<AutoSimd<[i8; 2]>> for AutoSimd<[i8; 2]>
impl Rem<AutoSimd<[i8; 4]>> for AutoSimd<[i8; 4]>
impl Rem<AutoSimd<[i8; 4]>> for AutoSimd<[i8; 4]>
impl Rem<AutoSimd<[i8; 8]>> for AutoSimd<[i8; 8]>
impl Rem<AutoSimd<[i8; 8]>> for AutoSimd<[i8; 8]>
impl Rem<AutoSimd<[i8; 16]>> for AutoSimd<[i8; 16]>
impl Rem<AutoSimd<[i8; 16]>> for AutoSimd<[i8; 16]>
impl Rem<AutoSimd<[i8; 32]>> for AutoSimd<[i8; 32]>
impl Rem<AutoSimd<[i8; 32]>> for AutoSimd<[i8; 32]>
impl Rem<AutoSimd<[isize; 2]>> for AutoSimd<[isize; 2]>
impl Rem<AutoSimd<[isize; 2]>> for AutoSimd<[isize; 2]>
impl Rem<AutoSimd<[isize; 4]>> for AutoSimd<[isize; 4]>
impl Rem<AutoSimd<[isize; 4]>> for AutoSimd<[isize; 4]>
impl Rem<AutoSimd<[isize; 8]>> for AutoSimd<[isize; 8]>
impl Rem<AutoSimd<[isize; 8]>> for AutoSimd<[isize; 8]>
impl Rem<AutoSimd<[u128; 1]>> for AutoSimd<[u128; 1]>
impl Rem<AutoSimd<[u128; 1]>> for AutoSimd<[u128; 1]>
impl Rem<AutoSimd<[u128; 2]>> for AutoSimd<[u128; 2]>
impl Rem<AutoSimd<[u128; 2]>> for AutoSimd<[u128; 2]>
impl Rem<AutoSimd<[u128; 4]>> for AutoSimd<[u128; 4]>
impl Rem<AutoSimd<[u128; 4]>> for AutoSimd<[u128; 4]>
impl Rem<AutoSimd<[u16; 2]>> for AutoSimd<[u16; 2]>
impl Rem<AutoSimd<[u16; 2]>> for AutoSimd<[u16; 2]>
impl Rem<AutoSimd<[u16; 4]>> for AutoSimd<[u16; 4]>
impl Rem<AutoSimd<[u16; 4]>> for AutoSimd<[u16; 4]>
impl Rem<AutoSimd<[u16; 8]>> for AutoSimd<[u16; 8]>
impl Rem<AutoSimd<[u16; 8]>> for AutoSimd<[u16; 8]>
impl Rem<AutoSimd<[u16; 16]>> for AutoSimd<[u16; 16]>
impl Rem<AutoSimd<[u16; 16]>> for AutoSimd<[u16; 16]>
impl Rem<AutoSimd<[u16; 32]>> for AutoSimd<[u16; 32]>
impl Rem<AutoSimd<[u16; 32]>> for AutoSimd<[u16; 32]>
impl Rem<AutoSimd<[u32; 2]>> for AutoSimd<[u32; 2]>
impl Rem<AutoSimd<[u32; 2]>> for AutoSimd<[u32; 2]>
impl Rem<AutoSimd<[u32; 4]>> for AutoSimd<[u32; 4]>
impl Rem<AutoSimd<[u32; 4]>> for AutoSimd<[u32; 4]>
impl Rem<AutoSimd<[u32; 8]>> for AutoSimd<[u32; 8]>
impl Rem<AutoSimd<[u32; 8]>> for AutoSimd<[u32; 8]>
impl Rem<AutoSimd<[u32; 16]>> for AutoSimd<[u32; 16]>
impl Rem<AutoSimd<[u32; 16]>> for AutoSimd<[u32; 16]>
impl Rem<AutoSimd<[u64; 2]>> for AutoSimd<[u64; 2]>
impl Rem<AutoSimd<[u64; 2]>> for AutoSimd<[u64; 2]>
impl Rem<AutoSimd<[u64; 4]>> for AutoSimd<[u64; 4]>
impl Rem<AutoSimd<[u64; 4]>> for AutoSimd<[u64; 4]>
impl Rem<AutoSimd<[u64; 8]>> for AutoSimd<[u64; 8]>
impl Rem<AutoSimd<[u64; 8]>> for AutoSimd<[u64; 8]>
impl Rem<AutoSimd<[u8; 2]>> for AutoSimd<[u8; 2]>
impl Rem<AutoSimd<[u8; 2]>> for AutoSimd<[u8; 2]>
impl Rem<AutoSimd<[u8; 4]>> for AutoSimd<[u8; 4]>
impl Rem<AutoSimd<[u8; 4]>> for AutoSimd<[u8; 4]>
impl Rem<AutoSimd<[u8; 8]>> for AutoSimd<[u8; 8]>
impl Rem<AutoSimd<[u8; 8]>> for AutoSimd<[u8; 8]>
impl Rem<AutoSimd<[u8; 16]>> for AutoSimd<[u8; 16]>
impl Rem<AutoSimd<[u8; 16]>> for AutoSimd<[u8; 16]>
impl Rem<AutoSimd<[u8; 32]>> for AutoSimd<[u8; 32]>
impl Rem<AutoSimd<[u8; 32]>> for AutoSimd<[u8; 32]>
impl Rem<AutoSimd<[usize; 2]>> for AutoSimd<[usize; 2]>
impl Rem<AutoSimd<[usize; 2]>> for AutoSimd<[usize; 2]>
impl Rem<AutoSimd<[usize; 4]>> for AutoSimd<[usize; 4]>
impl Rem<AutoSimd<[usize; 4]>> for AutoSimd<[usize; 4]>
impl Rem<AutoSimd<[usize; 8]>> for AutoSimd<[usize; 8]>
impl Rem<AutoSimd<[usize; 8]>> for AutoSimd<[usize; 8]>
impl<I: Integer + NonZero> Rem<I> for Z0
impl<I: Integer + NonZero> Rem<I> for Z0
impl<Ul: Unsigned + NonZero, Ur: Unsigned + NonZero> Rem<PInt<Ur>> for PInt<Ul> where
Ul: Rem<Ur>,
PInt<Ul>: PrivateRem<<Ul as Rem<Ur>>::Output, PInt<Ur>>,
impl<Ul: Unsigned + NonZero, Ur: Unsigned + NonZero> Rem<PInt<Ur>> for PInt<Ul> where
Ul: Rem<Ur>,
PInt<Ul>: PrivateRem<<Ul as Rem<Ur>>::Output, PInt<Ur>>,
impl<Ul: Unsigned + NonZero, Ur: Unsigned + NonZero> Rem<NInt<Ur>> for PInt<Ul> where
Ul: Rem<Ur>,
PInt<Ul>: PrivateRem<<Ul as Rem<Ur>>::Output, NInt<Ur>>,
impl<Ul: Unsigned + NonZero, Ur: Unsigned + NonZero> Rem<NInt<Ur>> for PInt<Ul> where
Ul: Rem<Ur>,
PInt<Ul>: PrivateRem<<Ul as Rem<Ur>>::Output, NInt<Ur>>,
impl<Ul: Unsigned + NonZero, Ur: Unsigned + NonZero> Rem<PInt<Ur>> for NInt<Ul> where
Ul: Rem<Ur>,
NInt<Ul>: PrivateRem<<Ul as Rem<Ur>>::Output, PInt<Ur>>,
impl<Ul: Unsigned + NonZero, Ur: Unsigned + NonZero> Rem<PInt<Ur>> for NInt<Ul> where
Ul: Rem<Ur>,
NInt<Ul>: PrivateRem<<Ul as Rem<Ur>>::Output, PInt<Ur>>,
impl<Ul: Unsigned + NonZero, Ur: Unsigned + NonZero> Rem<NInt<Ur>> for NInt<Ul> where
Ul: Rem<Ur>,
NInt<Ul>: PrivateRem<<Ul as Rem<Ur>>::Output, NInt<Ur>>,
impl<Ul: Unsigned + NonZero, Ur: Unsigned + NonZero> Rem<NInt<Ur>> for NInt<Ul> where
Ul: Rem<Ur>,
NInt<Ul>: PrivateRem<<Ul as Rem<Ur>>::Output, NInt<Ur>>,
impl<Ur: Unsigned, Br: Bit> Rem<UInt<Ur, Br>> for UTerm
impl<Ur: Unsigned, Br: Bit> Rem<UInt<Ur, Br>> for UTerm
impl<Ul: Unsigned, Bl: Bit, Ur: Unsigned, Br: Bit> Rem<UInt<Ur, Br>> for UInt<Ul, Bl> where
UInt<Ul, Bl>: Len,
Length<UInt<Ul, Bl>>: Sub<B1>,
(): PrivateDiv<UInt<Ul, Bl>, UInt<Ur, Br>, U0, U0, Sub1<Length<UInt<Ul, Bl>>>>,
impl<Ul: Unsigned, Bl: Bit, Ur: Unsigned, Br: Bit> Rem<UInt<Ur, Br>> for UInt<Ul, Bl> where
UInt<Ul, Bl>: Len,
Length<UInt<Ul, Bl>>: Sub<B1>,
(): PrivateDiv<UInt<Ul, Bl>, UInt<Ur, Br>, U0, U0, Sub1<Length<UInt<Ul, Bl>>>>,
impl<Rhs> Rem<Rhs> for ATerm
impl<Rhs> Rem<Rhs> for ATerm
impl<V, A, Rhs> Rem<Rhs> for TArr<V, A> where
V: Rem<Rhs>,
A: Rem<Rhs>,
Rhs: Copy,
impl<V, A, Rhs> Rem<Rhs> for TArr<V, A> where
V: Rem<Rhs>,
A: Rem<Rhs>,
Rhs: Copy,