pub trait ArrayRem<Rhs>: Sized {
    // Required method
    fn rem(&self, rhs: &Rhs) -> Self;
}
Available on crate feature compute_arithmetics only.
Expand description

Defines basic reminder operation for primitive arrays

Required Methods§

source

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

remainder

Implementors§

source§

impl<T> ArrayRem<PrimitiveArray<T>> for PrimitiveArray<T>where T: NativeArithmetics + Rem<Output = T>,

source§

impl<T> ArrayRem<T> for PrimitiveArray<T>where T: NativeArithmetics + Rem<Output = T> + NumCast,