W3cubDocs

/Rust

Trait std::ops::Rem

#[lang = "rem"]pub trait Rem<Rhs = Self> {
    type Output;
    fn rem(self, rhs: Rhs) -> Self::Output;
}

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;
        SplitSlice {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

type Output

The resulting type after applying the % operator.

Loading content...

Required methods

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

Performs the % operation.

Loading content...

Implementors

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

type Output = f32

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

type Output = f64

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.

type Output = i8

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.

type Output = i16

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.

type Output = i32

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.

type Output = i64

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.

type Output = i128

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.

type Output = isize

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.

type Output = u8

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.

type Output = u16

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.

type Output = u32

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.

type Output = u64

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.

type Output = u128

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.

type Output = usize

impl Rem<Wrapping<i8>> for Wrapping<i8>[src]

type Output = Wrapping<i8>

impl Rem<Wrapping<i16>> for Wrapping<i16>[src]

type Output = Wrapping<i16>

impl Rem<Wrapping<i32>> for Wrapping<i32>[src]

type Output = Wrapping<i32>

impl Rem<Wrapping<i64>> for Wrapping<i64>[src]

type Output = Wrapping<i64>

impl Rem<Wrapping<i128>> for Wrapping<i128>[src]

type Output = Wrapping<i128>

impl Rem<Wrapping<isize>> for Wrapping<isize>[src]

type Output = Wrapping<isize>

impl Rem<Wrapping<u8>> for Wrapping<u8>[src]

type Output = Wrapping<u8>

impl Rem<Wrapping<u16>> for Wrapping<u16>[src]

type Output = Wrapping<u16>

impl Rem<Wrapping<u32>> for Wrapping<u32>[src]

type Output = Wrapping<u32>

impl Rem<Wrapping<u64>> for Wrapping<u64>[src]

type Output = Wrapping<u64>

impl Rem<Wrapping<u128>> for Wrapping<u128>[src]

type Output = Wrapping<u128>

impl Rem<Wrapping<usize>> for Wrapping<usize>[src]

type Output = Wrapping<usize>

impl<'_> Rem<&'_ f32> for f32[src]

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

impl<'_> Rem<&'_ f64> for f64[src]

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

impl<'_> Rem<&'_ i8> for i8[src]

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

impl<'_> Rem<&'_ i16> for i16[src]

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

impl<'_> Rem<&'_ i32> for i32[src]

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

impl<'_> Rem<&'_ i64> for i64[src]

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

impl<'_> Rem<&'_ i128> for i128[src]

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

impl<'_> Rem<&'_ isize> for isize[src]

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

impl<'_> Rem<&'_ u8> for u8[src]

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

impl<'_> Rem<&'_ u16> for u16[src]

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

impl<'_> Rem<&'_ u32> for u32[src]

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

impl<'_> Rem<&'_ u64> for u64[src]

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

impl<'_> Rem<&'_ u128> for u128[src]

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

impl<'_> Rem<&'_ usize> for usize[src]

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

impl<'_> Rem<&'_ Wrapping<i8>> for Wrapping<i8>[src]

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

impl<'_> Rem<&'_ Wrapping<i16>> for Wrapping<i16>[src]

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

impl<'_> Rem<&'_ Wrapping<i32>> for Wrapping<i32>[src]

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

impl<'_> Rem<&'_ Wrapping<i64>> for Wrapping<i64>[src]

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

impl<'_> Rem<&'_ Wrapping<i128>> for Wrapping<i128>[src]

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

impl<'_> Rem<&'_ Wrapping<isize>> for Wrapping<isize>[src]

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

impl<'_> Rem<&'_ Wrapping<u8>> for Wrapping<u8>[src]

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

impl<'_> Rem<&'_ Wrapping<u16>> for Wrapping<u16>[src]

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

impl<'_> Rem<&'_ Wrapping<u32>> for Wrapping<u32>[src]

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

impl<'_> Rem<&'_ Wrapping<u64>> for Wrapping<u64>[src]

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

impl<'_> Rem<&'_ Wrapping<u128>> for Wrapping<u128>[src]

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

impl<'_> Rem<&'_ Wrapping<usize>> for Wrapping<usize>[src]

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

impl<'_, '_> Rem<&'_ f32> for &'_ f32[src]

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

impl<'_, '_> Rem<&'_ f64> for &'_ f64[src]

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

impl<'_, '_> Rem<&'_ i8> for &'_ i8[src]

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

impl<'_, '_> Rem<&'_ i16> for &'_ i16[src]

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

impl<'_, '_> Rem<&'_ i32> for &'_ i32[src]

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

impl<'_, '_> Rem<&'_ i64> for &'_ i64[src]

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

impl<'_, '_> Rem<&'_ i128> for &'_ i128[src]

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

impl<'_, '_> Rem<&'_ isize> for &'_ isize[src]

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

impl<'_, '_> Rem<&'_ u8> for &'_ u8[src]

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

impl<'_, '_> Rem<&'_ u16> for &'_ u16[src]

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

impl<'_, '_> Rem<&'_ u32> for &'_ u32[src]

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

impl<'_, '_> Rem<&'_ u64> for &'_ u64[src]

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

impl<'_, '_> Rem<&'_ u128> for &'_ u128[src]

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

impl<'_, '_> Rem<&'_ usize> for &'_ usize[src]

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

impl<'_, '_> Rem<&'_ Wrapping<i8>> for &'_ Wrapping<i8>[src]

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

impl<'_, '_> Rem<&'_ Wrapping<i16>> for &'_ Wrapping<i16>[src]

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

impl<'_, '_> Rem<&'_ Wrapping<i32>> for &'_ Wrapping<i32>[src]

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

impl<'_, '_> Rem<&'_ Wrapping<i64>> for &'_ Wrapping<i64>[src]

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

impl<'_, '_> Rem<&'_ Wrapping<i128>> for &'_ Wrapping<i128>[src]

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

impl<'_, '_> Rem<&'_ Wrapping<isize>> for &'_ Wrapping<isize>[src]

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

impl<'_, '_> Rem<&'_ Wrapping<u8>> for &'_ Wrapping<u8>[src]

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

impl<'_, '_> Rem<&'_ Wrapping<u16>> for &'_ Wrapping<u16>[src]

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

impl<'_, '_> Rem<&'_ Wrapping<u32>> for &'_ Wrapping<u32>[src]

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

impl<'_, '_> Rem<&'_ Wrapping<u64>> for &'_ Wrapping<u64>[src]

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

impl<'_, '_> Rem<&'_ Wrapping<u128>> for &'_ Wrapping<u128>[src]

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

impl<'_, '_> Rem<&'_ Wrapping<usize>> for &'_ Wrapping<usize>[src]

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

impl<'a> Rem<f32> for &'a f32[src]

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

impl<'a> Rem<f64> for &'a f64[src]

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

impl<'a> Rem<i8> for &'a i8[src]

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

impl<'a> Rem<i16> for &'a i16[src]

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

impl<'a> Rem<i32> for &'a i32[src]

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

impl<'a> Rem<i64> for &'a i64[src]

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

impl<'a> Rem<i128> for &'a i128[src]

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

impl<'a> Rem<isize> for &'a isize[src]

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

impl<'a> Rem<u8> for &'a u8[src]

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

impl<'a> Rem<u16> for &'a u16[src]

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

impl<'a> Rem<u32> for &'a u32[src]

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

impl<'a> Rem<u64> for &'a u64[src]

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

impl<'a> Rem<u128> for &'a u128[src]

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

impl<'a> Rem<usize> for &'a usize[src]

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

impl<'a> Rem<Wrapping<i8>> for &'a Wrapping<i8>[src]

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

impl<'a> Rem<Wrapping<i16>> for &'a Wrapping<i16>[src]

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

impl<'a> Rem<Wrapping<i32>> for &'a Wrapping<i32>[src]

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

impl<'a> Rem<Wrapping<i64>> for &'a Wrapping<i64>[src]

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

impl<'a> Rem<Wrapping<i128>> for &'a Wrapping<i128>[src]

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

impl<'a> Rem<Wrapping<isize>> for &'a Wrapping<isize>[src]

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

impl<'a> Rem<Wrapping<u8>> for &'a Wrapping<u8>[src]

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

impl<'a> Rem<Wrapping<u16>> for &'a Wrapping<u16>[src]

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

impl<'a> Rem<Wrapping<u32>> for &'a Wrapping<u32>[src]

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

impl<'a> Rem<Wrapping<u64>> for &'a Wrapping<u64>[src]

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

impl<'a> Rem<Wrapping<u128>> for &'a Wrapping<u128>[src]

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

impl<'a> Rem<Wrapping<usize>> for &'a Wrapping<usize>[src]

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

Loading content...

© 2010 The Rust Project Developers
Licensed under the Apache License, Version 2.0 or the MIT license, at your option.
https://doc.rust-lang.org/std/ops/trait.Rem.html