Trait kvarn::prelude::utils::prelude::compact_str::core::ops::Rem

1.0.0 · source ·
pub trait Rem<Rhs = Self> {
    type Output;

    // Required method
    fn rem(self, rhs: Rhs) -> Self::Output;
}
Available on non-crate feature miri-test-libstd only.
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] });

Required Associated Types§

source

type Output

The resulting type after applying the % operator.

Required Methods§

source

fn rem(self, rhs: Rhs) -> Self::Output

Performs the % operation.

Example
assert_eq!(12 % 10, 2);

Implementors§

const: unstable · source§

impl Rem<&f32> for &f32

§

type Output = <f32 as Rem<f32>>::Output

const: unstable · source§

impl Rem<&f32> for f32

§

type Output = <f32 as Rem<f32>>::Output

const: unstable · source§

impl Rem<&f64> for &f64

§

type Output = <f64 as Rem<f64>>::Output

const: unstable · source§

impl Rem<&f64> for f64

§

type Output = <f64 as Rem<f64>>::Output

const: unstable · source§

impl Rem<&i8> for &i8

§

type Output = <i8 as Rem<i8>>::Output

const: unstable · source§

impl Rem<&i8> for i8

§

type Output = <i8 as Rem<i8>>::Output

const: unstable · source§

impl Rem<&i16> for &i16

§

type Output = <i16 as Rem<i16>>::Output

const: unstable · source§

impl Rem<&i16> for i16

§

type Output = <i16 as Rem<i16>>::Output

const: unstable · source§

impl Rem<&i32> for &i32

§

type Output = <i32 as Rem<i32>>::Output

const: unstable · source§

impl Rem<&i32> for i32

§

type Output = <i32 as Rem<i32>>::Output

const: unstable · source§

impl Rem<&i64> for &i64

§

type Output = <i64 as Rem<i64>>::Output

const: unstable · source§

impl Rem<&i64> for i64

§

type Output = <i64 as Rem<i64>>::Output

const: unstable · source§

impl Rem<&i128> for &i128

§

type Output = <i128 as Rem<i128>>::Output

const: unstable · source§

impl Rem<&i128> for i128

§

type Output = <i128 as Rem<i128>>::Output

const: unstable · source§

impl Rem<&isize> for &isize

§

type Output = <isize as Rem<isize>>::Output

const: unstable · source§

impl Rem<&isize> for isize

§

type Output = <isize as Rem<isize>>::Output

const: unstable · source§

impl Rem<&u8> for &u8

§

type Output = <u8 as Rem<u8>>::Output

const: unstable · source§

impl Rem<&u8> for u8

§

type Output = <u8 as Rem<u8>>::Output

const: unstable · source§

impl Rem<&u16> for &u16

§

type Output = <u16 as Rem<u16>>::Output

const: unstable · source§

impl Rem<&u16> for u16

§

type Output = <u16 as Rem<u16>>::Output

const: unstable · source§

impl Rem<&u32> for &u32

§

type Output = <u32 as Rem<u32>>::Output

const: unstable · source§

impl Rem<&u32> for u32

§

type Output = <u32 as Rem<u32>>::Output

const: unstable · source§

impl Rem<&u64> for &u64

§

type Output = <u64 as Rem<u64>>::Output

const: unstable · source§

impl Rem<&u64> for u64

§

type Output = <u64 as Rem<u64>>::Output

const: unstable · source§

impl Rem<&u128> for &u128

§

type Output = <u128 as Rem<u128>>::Output

const: unstable · source§

impl Rem<&u128> for u128

§

type Output = <u128 as Rem<u128>>::Output

const: unstable · source§

impl Rem<&usize> for &usize

§

type Output = <usize as Rem<usize>>::Output

const: unstable · source§

impl Rem<&usize> for usize

§

type Output = <usize as Rem<usize>>::Output

source§

impl Rem<&Saturating<i8>> for &Saturating<i8>

source§

impl Rem<&Saturating<i8>> for Saturating<i8>

source§

impl Rem<&Saturating<i16>> for &Saturating<i16>

source§

impl Rem<&Saturating<i16>> for Saturating<i16>

source§

impl Rem<&Saturating<i32>> for &Saturating<i32>

source§

impl Rem<&Saturating<i32>> for Saturating<i32>

source§

impl Rem<&Saturating<i64>> for &Saturating<i64>

source§

impl Rem<&Saturating<i64>> for Saturating<i64>

source§

impl Rem<&Saturating<i128>> for &Saturating<i128>

source§

impl Rem<&Saturating<i128>> for Saturating<i128>

source§

impl Rem<&Saturating<isize>> for &Saturating<isize>

source§

impl Rem<&Saturating<isize>> for Saturating<isize>

source§

impl Rem<&Saturating<u8>> for &Saturating<u8>

source§

impl Rem<&Saturating<u8>> for Saturating<u8>

source§

impl Rem<&Saturating<u16>> for &Saturating<u16>

source§

impl Rem<&Saturating<u16>> for Saturating<u16>

source§

impl Rem<&Saturating<u32>> for &Saturating<u32>

source§

impl Rem<&Saturating<u32>> for Saturating<u32>

source§

impl Rem<&Saturating<u64>> for &Saturating<u64>

source§

impl Rem<&Saturating<u64>> for Saturating<u64>

source§

impl Rem<&Saturating<u128>> for &Saturating<u128>

source§

impl Rem<&Saturating<u128>> for Saturating<u128>

source§

impl Rem<&Saturating<usize>> for &Saturating<usize>

source§

impl Rem<&Saturating<usize>> for Saturating<usize>

1.14.0 (const: unstable) · source§

impl Rem<&Wrapping<i8>> for &Wrapping<i8>

1.14.0 (const: unstable) · source§

impl Rem<&Wrapping<i8>> for Wrapping<i8>

1.14.0 (const: unstable) · source§

impl Rem<&Wrapping<i16>> for &Wrapping<i16>

1.14.0 (const: unstable) · source§

impl Rem<&Wrapping<i16>> for Wrapping<i16>

1.14.0 (const: unstable) · source§

impl Rem<&Wrapping<i32>> for &Wrapping<i32>

1.14.0 (const: unstable) · source§

impl Rem<&Wrapping<i32>> for Wrapping<i32>

1.14.0 (const: unstable) · source§

impl Rem<&Wrapping<i64>> for &Wrapping<i64>

1.14.0 (const: unstable) · source§

impl Rem<&Wrapping<i64>> for Wrapping<i64>

1.14.0 (const: unstable) · source§

impl Rem<&Wrapping<i128>> for &Wrapping<i128>

1.14.0 (const: unstable) · source§

impl Rem<&Wrapping<i128>> for Wrapping<i128>

1.14.0 (const: unstable) · source§

impl Rem<&Wrapping<isize>> for &Wrapping<isize>

1.14.0 (const: unstable) · source§

impl Rem<&Wrapping<isize>> for Wrapping<isize>

1.14.0 (const: unstable) · source§

impl Rem<&Wrapping<u8>> for &Wrapping<u8>

1.14.0 (const: unstable) · source§

impl Rem<&Wrapping<u8>> for Wrapping<u8>

1.14.0 (const: unstable) · source§

impl Rem<&Wrapping<u16>> for &Wrapping<u16>

1.14.0 (const: unstable) · source§

impl Rem<&Wrapping<u16>> for Wrapping<u16>

1.14.0 (const: unstable) · source§

impl Rem<&Wrapping<u32>> for &Wrapping<u32>

1.14.0 (const: unstable) · source§

impl Rem<&Wrapping<u32>> for Wrapping<u32>

1.14.0 (const: unstable) · source§

impl Rem<&Wrapping<u64>> for &Wrapping<u64>

1.14.0 (const: unstable) · source§

impl Rem<&Wrapping<u64>> for Wrapping<u64>

1.14.0 (const: unstable) · source§

impl Rem<&Wrapping<u128>> for &Wrapping<u128>

1.14.0 (const: unstable) · source§

impl Rem<&Wrapping<u128>> for Wrapping<u128>

1.14.0 (const: unstable) · source§

impl Rem<&Wrapping<usize>> for &Wrapping<usize>

1.14.0 (const: unstable) · source§

impl Rem<&Wrapping<usize>> for Wrapping<usize>

const: unstable · source§

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);
§

type Output = f32

const: unstable · source§

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);
§

type Output = f64

const: unstable · source§

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.

§

type Output = i8

source§

impl Rem<i8> for BigInt

const: unstable · source§

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.

§

type Output = i16

source§

impl Rem<i16> for BigInt

const: unstable · source§

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.

§

type Output = i32

source§

impl Rem<i32> for BigInt

const: unstable · source§

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.

§

type Output = i64

source§

impl Rem<i64> for BigInt

const: unstable · source§

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.

§

type Output = i128

source§

impl Rem<i128> for BigInt

const: unstable · source§

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.

source§

impl Rem<isize> for BigInt

const: unstable · source§

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.

§

type Output = u8

source§

impl Rem<u8> for BigInt

source§

impl Rem<u8> for BigUint

const: unstable · source§

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.

§

type Output = u16

source§

impl Rem<u16> for BigInt

source§

impl Rem<u16> for BigUint

const: unstable · source§

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.

§

type Output = u32

source§

impl Rem<u32> for BigInt

source§

impl Rem<u32> for BigUint

const: unstable · source§

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.

§

type Output = u64

source§

impl Rem<u64> for BigInt

source§

impl Rem<u64> for BigUint

const: unstable · source§

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.

§

type Output = u128

source§

impl Rem<u128> for BigInt

source§

impl Rem<u128> for BigUint

const: unstable · source§

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.

source§

impl Rem<usize> for BigInt

source§

impl Rem<usize> for BigUint

1.51.0 (const: unstable) · source§

impl Rem<NonZeroU8> for u8

§

type Output = u8

1.51.0 (const: unstable) · source§

impl Rem<NonZeroU16> for u16

§

type Output = u16

1.51.0 (const: unstable) · source§

impl Rem<NonZeroU32> for u32

§

type Output = u32

1.51.0 (const: unstable) · source§

impl Rem<NonZeroU64> for u64

§

type Output = u64

1.51.0 (const: unstable) · source§

impl Rem<NonZeroU128> for u128

§

type Output = u128

1.51.0 (const: unstable) · source§

impl Rem<NonZeroUsize> for usize

source§

impl Rem<Saturating<i8>> for Saturating<i8>

source§

impl Rem<Saturating<i16>> for Saturating<i16>

source§

impl Rem<Saturating<i32>> for Saturating<i32>

source§

impl Rem<Saturating<i64>> for Saturating<i64>

source§

impl Rem<Saturating<i128>> for Saturating<i128>

source§

impl Rem<Saturating<isize>> for Saturating<isize>

source§

impl Rem<Saturating<u8>> for Saturating<u8>

source§

impl Rem<Saturating<u16>> for Saturating<u16>

source§

impl Rem<Saturating<u32>> for Saturating<u32>

source§

impl Rem<Saturating<u64>> for Saturating<u64>

source§

impl Rem<Saturating<u128>> for Saturating<u128>

source§

impl Rem<Saturating<usize>> for Saturating<usize>

1.7.0 (const: unstable) · source§

impl Rem<Wrapping<i8>> for Wrapping<i8>

1.7.0 (const: unstable) · source§

impl Rem<Wrapping<i16>> for Wrapping<i16>

1.7.0 (const: unstable) · source§

impl Rem<Wrapping<i32>> for Wrapping<i32>

1.7.0 (const: unstable) · source§

impl Rem<Wrapping<i64>> for Wrapping<i64>

1.7.0 (const: unstable) · source§

impl Rem<Wrapping<i128>> for Wrapping<i128>

1.7.0 (const: unstable) · source§

impl Rem<Wrapping<isize>> for Wrapping<isize>

1.7.0 (const: unstable) · source§

impl Rem<Wrapping<u8>> for Wrapping<u8>

1.7.0 (const: unstable) · source§

impl Rem<Wrapping<u16>> for Wrapping<u16>

1.7.0 (const: unstable) · source§

impl Rem<Wrapping<u32>> for Wrapping<u32>

1.7.0 (const: unstable) · source§

impl Rem<Wrapping<u64>> for Wrapping<u64>

1.7.0 (const: unstable) · source§

impl Rem<Wrapping<u128>> for Wrapping<u128>

1.7.0 (const: unstable) · source§

impl Rem<Wrapping<usize>> for Wrapping<usize>

source§

impl Rem<BigInt> for i8

source§

impl Rem<BigInt> for i16

source§

impl Rem<BigInt> for i32

source§

impl Rem<BigInt> for i64

source§

impl Rem<BigInt> for i128

source§

impl Rem<BigInt> for isize

source§

impl Rem<BigInt> for u8

source§

impl Rem<BigInt> for u16

source§

impl Rem<BigInt> for u32

source§

impl Rem<BigInt> for u64

source§

impl Rem<BigInt> for u128

source§

impl Rem<BigInt> for usize

source§

impl Rem<BigInt> for BigInt

source§

impl Rem<BigUint> for u8

source§

impl Rem<BigUint> for u16

source§

impl Rem<BigUint> for u32

source§

impl Rem<BigUint> for u64

source§

impl Rem<BigUint> for u128

source§

impl Rem<BigUint> for usize

source§

impl Rem<BigUint> for BigUint

source§

impl<'a> Rem<&'a i8> for BigInt

source§

impl<'a> Rem<&'a i16> for BigInt

source§

impl<'a> Rem<&'a i32> for BigInt

source§

impl<'a> Rem<&'a i64> for BigInt

source§

impl<'a> Rem<&'a i128> for BigInt

source§

impl<'a> Rem<&'a isize> for BigInt

source§

impl<'a> Rem<&'a u8> for BigInt

source§

impl<'a> Rem<&'a u8> for BigUint

source§

impl<'a> Rem<&'a u16> for BigInt

source§

impl<'a> Rem<&'a u16> for BigUint

source§

impl<'a> Rem<&'a u32> for BigInt

source§

impl<'a> Rem<&'a u32> for BigUint

source§

impl<'a> Rem<&'a u64> for BigInt

source§

impl<'a> Rem<&'a u64> for BigUint

source§

impl<'a> Rem<&'a u128> for BigInt

source§

impl<'a> Rem<&'a u128> for BigUint

source§

impl<'a> Rem<&'a usize> for BigInt

source§

impl<'a> Rem<&'a usize> for BigUint

source§

impl<'a> Rem<&'a BigInt> for i8

source§

impl<'a> Rem<&'a BigInt> for i16

source§

impl<'a> Rem<&'a BigInt> for i32

source§

impl<'a> Rem<&'a BigInt> for i64

source§

impl<'a> Rem<&'a BigInt> for i128

source§

impl<'a> Rem<&'a BigInt> for isize

source§

impl<'a> Rem<&'a BigInt> for u8

source§

impl<'a> Rem<&'a BigInt> for u16

source§

impl<'a> Rem<&'a BigInt> for u32

source§

impl<'a> Rem<&'a BigInt> for u64

source§

impl<'a> Rem<&'a BigInt> for u128

source§

impl<'a> Rem<&'a BigInt> for usize

source§

impl<'a> Rem<&'a BigInt> for BigInt

source§

impl<'a> Rem<&'a BigUint> for u8

source§

impl<'a> Rem<&'a BigUint> for u16

source§

impl<'a> Rem<&'a BigUint> for u32

source§

impl<'a> Rem<&'a BigUint> for u64

source§

impl<'a> Rem<&'a BigUint> for u128

source§

impl<'a> Rem<&'a BigUint> for usize

source§

impl<'a> Rem<&'a BigUint> for BigUint

const: unstable · source§

impl<'a> Rem<f32> for &'a f32

§

type Output = <f32 as Rem<f32>>::Output

const: unstable · source§

impl<'a> Rem<f64> for &'a f64

§

type Output = <f64 as Rem<f64>>::Output

const: unstable · source§

impl<'a> Rem<i8> for &'a i8

§

type Output = <i8 as Rem<i8>>::Output

source§

impl<'a> Rem<i8> for &'a BigInt

const: unstable · source§

impl<'a> Rem<i16> for &'a i16

§

type Output = <i16 as Rem<i16>>::Output

source§

impl<'a> Rem<i16> for &'a BigInt

const: unstable · source§

impl<'a> Rem<i32> for &'a i32

§

type Output = <i32 as Rem<i32>>::Output

source§

impl<'a> Rem<i32> for &'a BigInt

const: unstable · source§

impl<'a> Rem<i64> for &'a i64

§

type Output = <i64 as Rem<i64>>::Output

source§

impl<'a> Rem<i64> for &'a BigInt

const: unstable · source§

impl<'a> Rem<i128> for &'a i128

§

type Output = <i128 as Rem<i128>>::Output

source§

impl<'a> Rem<i128> for &'a BigInt

const: unstable · source§

impl<'a> Rem<isize> for &'a isize

§

type Output = <isize as Rem<isize>>::Output

source§

impl<'a> Rem<isize> for &'a BigInt

const: unstable · source§

impl<'a> Rem<u8> for &'a u8

§

type Output = <u8 as Rem<u8>>::Output

source§

impl<'a> Rem<u8> for &'a BigInt

source§

impl<'a> Rem<u8> for &'a BigUint

const: unstable · source§

impl<'a> Rem<u16> for &'a u16

§

type Output = <u16 as Rem<u16>>::Output

source§

impl<'a> Rem<u16> for &'a BigInt

source§

impl<'a> Rem<u16> for &'a BigUint

const: unstable · source§

impl<'a> Rem<u32> for &'a u32

§

type Output = <u32 as Rem<u32>>::Output

source§

impl<'a> Rem<u32> for &'a BigInt

source§

impl<'a> Rem<u32> for &'a BigUint

const: unstable · source§

impl<'a> Rem<u64> for &'a u64

§

type Output = <u64 as Rem<u64>>::Output

source§

impl<'a> Rem<u64> for &'a BigInt

source§

impl<'a> Rem<u64> for &'a BigUint

const: unstable · source§

impl<'a> Rem<u128> for &'a u128

§

type Output = <u128 as Rem<u128>>::Output

source§

impl<'a> Rem<u128> for &'a BigInt

source§

impl<'a> Rem<u128> for &'a BigUint

const: unstable · source§

impl<'a> Rem<usize> for &'a usize

§

type Output = <usize as Rem<usize>>::Output

source§

impl<'a> Rem<usize> for &'a BigInt

source§

impl<'a> Rem<usize> for &'a BigUint

source§

impl<'a> Rem<Saturating<i8>> for &'a Saturating<i8>

source§

impl<'a> Rem<Saturating<i16>> for &'a Saturating<i16>

source§

impl<'a> Rem<Saturating<i32>> for &'a Saturating<i32>

source§

impl<'a> Rem<Saturating<i64>> for &'a Saturating<i64>

source§

impl<'a> Rem<Saturating<i128>> for &'a Saturating<i128>

source§

impl<'a> Rem<Saturating<isize>> for &'a Saturating<isize>

source§

impl<'a> Rem<Saturating<u8>> for &'a Saturating<u8>

source§

impl<'a> Rem<Saturating<u16>> for &'a Saturating<u16>

source§

impl<'a> Rem<Saturating<u32>> for &'a Saturating<u32>

source§

impl<'a> Rem<Saturating<u64>> for &'a Saturating<u64>

source§

impl<'a> Rem<Saturating<u128>> for &'a Saturating<u128>

source§

impl<'a> Rem<Saturating<usize>> for &'a Saturating<usize>

1.14.0 (const: unstable) · source§

impl<'a> Rem<Wrapping<i8>> for &'a Wrapping<i8>

1.14.0 (const: unstable) · source§

impl<'a> Rem<Wrapping<i16>> for &'a Wrapping<i16>

1.14.0 (const: unstable) · source§

impl<'a> Rem<Wrapping<i32>> for &'a Wrapping<i32>

1.14.0 (const: unstable) · source§

impl<'a> Rem<Wrapping<i64>> for &'a Wrapping<i64>

1.14.0 (const: unstable) · source§

impl<'a> Rem<Wrapping<i128>> for &'a Wrapping<i128>

1.14.0 (const: unstable) · source§

impl<'a> Rem<Wrapping<isize>> for &'a Wrapping<isize>

1.14.0 (const: unstable) · source§

impl<'a> Rem<Wrapping<u8>> for &'a Wrapping<u8>

1.14.0 (const: unstable) · source§

impl<'a> Rem<Wrapping<u16>> for &'a Wrapping<u16>

1.14.0 (const: unstable) · source§

impl<'a> Rem<Wrapping<u32>> for &'a Wrapping<u32>

1.14.0 (const: unstable) · source§

impl<'a> Rem<Wrapping<u64>> for &'a Wrapping<u64>

1.14.0 (const: unstable) · source§

impl<'a> Rem<Wrapping<u128>> for &'a Wrapping<u128>

1.14.0 (const: unstable) · source§

impl<'a> Rem<Wrapping<usize>> for &'a Wrapping<usize>

source§

impl<'a> Rem<BigInt> for &'a i8

source§

impl<'a> Rem<BigInt> for &'a i16

source§

impl<'a> Rem<BigInt> for &'a i32

source§

impl<'a> Rem<BigInt> for &'a i64

source§

impl<'a> Rem<BigInt> for &'a i128

source§

impl<'a> Rem<BigInt> for &'a isize

source§

impl<'a> Rem<BigInt> for &'a u8

source§

impl<'a> Rem<BigInt> for &'a u16

source§

impl<'a> Rem<BigInt> for &'a u32

source§

impl<'a> Rem<BigInt> for &'a u64

source§

impl<'a> Rem<BigInt> for &'a u128

source§

impl<'a> Rem<BigInt> for &'a usize

source§

impl<'a> Rem<BigInt> for &'a BigInt

source§

impl<'a> Rem<BigUint> for &'a u8

source§

impl<'a> Rem<BigUint> for &'a u16

source§

impl<'a> Rem<BigUint> for &'a u32

source§

impl<'a> Rem<BigUint> for &'a u64

source§

impl<'a> Rem<BigUint> for &'a u128

source§

impl<'a> Rem<BigUint> for &'a usize

source§

impl<'a> Rem<BigUint> for &'a BigUint

source§

impl<'a, 'b> Rem<&'a BigInt> for &'b i8

source§

impl<'a, 'b> Rem<&'a BigInt> for &'b i16

source§

impl<'a, 'b> Rem<&'a BigInt> for &'b i32

source§

impl<'a, 'b> Rem<&'a BigInt> for &'b i64

source§

impl<'a, 'b> Rem<&'a BigInt> for &'b i128

source§

impl<'a, 'b> Rem<&'a BigInt> for &'b isize

source§

impl<'a, 'b> Rem<&'a BigInt> for &'b u8

source§

impl<'a, 'b> Rem<&'a BigInt> for &'b u16

source§

impl<'a, 'b> Rem<&'a BigInt> for &'b u32

source§

impl<'a, 'b> Rem<&'a BigInt> for &'b u64

source§

impl<'a, 'b> Rem<&'a BigInt> for &'b u128

source§

impl<'a, 'b> Rem<&'a BigInt> for &'b usize

source§

impl<'a, 'b> Rem<&'a BigUint> for &'b u8

source§

impl<'a, 'b> Rem<&'a BigUint> for &'b u16

source§

impl<'a, 'b> Rem<&'a BigUint> for &'b u32

source§

impl<'a, 'b> Rem<&'a BigUint> for &'b u64

source§

impl<'a, 'b> Rem<&'a BigUint> for &'b u128

source§

impl<'a, 'b> Rem<&'a BigUint> for &'b usize

source§

impl<'a, 'b> Rem<&'b i8> for &'a BigInt

source§

impl<'a, 'b> Rem<&'b i16> for &'a BigInt

source§

impl<'a, 'b> Rem<&'b i32> for &'a BigInt

source§

impl<'a, 'b> Rem<&'b i64> for &'a BigInt

source§

impl<'a, 'b> Rem<&'b i128> for &'a BigInt

source§

impl<'a, 'b> Rem<&'b isize> for &'a BigInt

source§

impl<'a, 'b> Rem<&'b u8> for &'a BigInt

source§

impl<'a, 'b> Rem<&'b u8> for &'a BigUint

source§

impl<'a, 'b> Rem<&'b u16> for &'a BigInt

source§

impl<'a, 'b> Rem<&'b u16> for &'a BigUint

source§

impl<'a, 'b> Rem<&'b u32> for &'a BigInt

source§

impl<'a, 'b> Rem<&'b u32> for &'a BigUint

source§

impl<'a, 'b> Rem<&'b u64> for &'a BigInt

source§

impl<'a, 'b> Rem<&'b u64> for &'a BigUint

source§

impl<'a, 'b> Rem<&'b u128> for &'a BigInt

source§

impl<'a, 'b> Rem<&'b u128> for &'a BigUint

source§

impl<'a, 'b> Rem<&'b usize> for &'a BigInt

source§

impl<'a, 'b> Rem<&'b usize> for &'a BigUint

source§

impl<'a, 'b> Rem<&'b BigInt> for &'a BigInt

source§

impl<'a, 'b> Rem<&'b BigUint> for &'a BigUint

source§

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>, Output = Simd<T, LANES>>, LaneCount<LANES>: SupportedLaneCount,

§

type Output = Simd<T, LANES>

source§

impl<I> Rem<I> for Z0where I: Integer + NonZero,

Z0 % I = Z0 where I != 0

§

type Output = Z0

source§

impl<Rhs> Rem<Rhs> for ATerm

source§

impl<T, const LANES: usize> Rem<&Simd<T, LANES>> for Simd<T, LANES>where T: SimdElement, Simd<T, LANES>: Rem<Simd<T, LANES>, Output = Simd<T, LANES>>, LaneCount<LANES>: SupportedLaneCount,

§

type Output = Simd<T, LANES>

source§

impl<T, const LANES: usize> Rem<Simd<T, LANES>> for &Simd<T, LANES>where T: SimdElement, Simd<T, LANES>: Rem<Simd<T, LANES>, Output = Simd<T, LANES>>, LaneCount<LANES>: SupportedLaneCount,

§

type Output = Simd<T, LANES>

source§

impl<Ul, Bl, Ur, Br> Rem<UInt<Ur, Br>> for UInt<Ul, Bl>where Ul: Unsigned, Bl: Bit, Ur: Unsigned, Br: Bit, UInt<Ul, Bl>: Len, <UInt<Ul, Bl> as Len>::Output: Sub<B1>, (): PrivateDiv<UInt<Ul, Bl>, UInt<Ur, Br>, UTerm, UTerm, <<UInt<Ul, Bl> as Len>::Output as Sub<B1>>::Output>,

§

type Output = <() as PrivateDiv<UInt<Ul, Bl>, UInt<Ur, Br>, UTerm, UTerm, <<UInt<Ul, Bl> as Len>::Output as Sub<B1>>::Output>>::Remainder

source§

impl<Ul, Ur> Rem<NInt<Ur>> for NInt<Ul>where Ul: Unsigned + NonZero + Rem<Ur>, Ur: Unsigned + NonZero, NInt<Ul>: PrivateRem<<Ul as Rem<Ur>>::Output, NInt<Ur>>,

$A<Ul> % $B<Ur> = $R<Ul % Ur>

§

type Output = <NInt<Ul> as PrivateRem<<Ul as Rem<Ur>>::Output, NInt<Ur>>>::Output

source§

impl<Ul, Ur> Rem<NInt<Ur>> for PInt<Ul>where Ul: Unsigned + NonZero + Rem<Ur>, Ur: Unsigned + NonZero, PInt<Ul>: PrivateRem<<Ul as Rem<Ur>>::Output, NInt<Ur>>,

$A<Ul> % $B<Ur> = $R<Ul % Ur>

§

type Output = <PInt<Ul> as PrivateRem<<Ul as Rem<Ur>>::Output, NInt<Ur>>>::Output

source§

impl<Ul, Ur> Rem<PInt<Ur>> for NInt<Ul>where Ul: Unsigned + NonZero + Rem<Ur>, Ur: Unsigned + NonZero, NInt<Ul>: PrivateRem<<Ul as Rem<Ur>>::Output, PInt<Ur>>,

$A<Ul> % $B<Ur> = $R<Ul % Ur>

§

type Output = <NInt<Ul> as PrivateRem<<Ul as Rem<Ur>>::Output, PInt<Ur>>>::Output

source§

impl<Ul, Ur> Rem<PInt<Ur>> for PInt<Ul>where Ul: Unsigned + NonZero + Rem<Ur>, Ur: Unsigned + NonZero, PInt<Ul>: PrivateRem<<Ul as Rem<Ur>>::Output, PInt<Ur>>,

$A<Ul> % $B<Ur> = $R<Ul % Ur>

§

type Output = <PInt<Ul> as PrivateRem<<Ul as Rem<Ur>>::Output, PInt<Ur>>>::Output

source§

impl<Ur, Br> Rem<UInt<Ur, Br>> for UTermwhere Ur: Unsigned, Br: Bit,

source§

impl<V, A, Rhs> Rem<Rhs> for TArr<V, A>where V: Rem<Rhs>, A: Rem<Rhs>, Rhs: Copy,

§

type Output = TArr<<V as Rem<Rhs>>::Output, <A as Rem<Rhs>>::Output>

source§

impl<const N: usize> Rem<Simd<f32, N>> for Simd<f32, N>where f32: SimdElement, LaneCount<N>: SupportedLaneCount,

§

type Output = Simd<f32, N>

source§

impl<const N: usize> Rem<Simd<f64, N>> for Simd<f64, N>where f64: SimdElement, LaneCount<N>: SupportedLaneCount,

§

type Output = Simd<f64, N>

source§

impl<const N: usize> Rem<Simd<i8, N>> for Simd<i8, N>where i8: SimdElement, LaneCount<N>: SupportedLaneCount,

§

type Output = Simd<i8, N>

source§

impl<const N: usize> Rem<Simd<i16, N>> for Simd<i16, N>where i16: SimdElement, LaneCount<N>: SupportedLaneCount,

§

type Output = Simd<i16, N>

source§

impl<const N: usize> Rem<Simd<i32, N>> for Simd<i32, N>where i32: SimdElement, LaneCount<N>: SupportedLaneCount,

§

type Output = Simd<i32, N>

source§

impl<const N: usize> Rem<Simd<i64, N>> for Simd<i64, N>where i64: SimdElement, LaneCount<N>: SupportedLaneCount,

§

type Output = Simd<i64, N>

source§

impl<const N: usize> Rem<Simd<isize, N>> for Simd<isize, N>where isize: SimdElement, LaneCount<N>: SupportedLaneCount,

§

type Output = Simd<isize, N>

source§

impl<const N: usize> Rem<Simd<u8, N>> for Simd<u8, N>where u8: SimdElement, LaneCount<N>: SupportedLaneCount,

§

type Output = Simd<u8, N>

source§

impl<const N: usize> Rem<Simd<u16, N>> for Simd<u16, N>where u16: SimdElement, LaneCount<N>: SupportedLaneCount,

§

type Output = Simd<u16, N>

source§

impl<const N: usize> Rem<Simd<u32, N>> for Simd<u32, N>where u32: SimdElement, LaneCount<N>: SupportedLaneCount,

§

type Output = Simd<u32, N>

source§

impl<const N: usize> Rem<Simd<u64, N>> for Simd<u64, N>where u64: SimdElement, LaneCount<N>: SupportedLaneCount,

§

type Output = Simd<u64, N>

source§

impl<const N: usize> Rem<Simd<usize, N>> for Simd<usize, N>where usize: SimdElement, LaneCount<N>: SupportedLaneCount,

§

type Output = Simd<usize, N>