Trait arrow2::compute::arithmetics::ArraySaturatingMul[][src]

pub trait ArraySaturatingMul<Rhs> {
    type Output;
    fn saturating_mul(&self, rhs: &Rhs) -> Result<Self::Output>;
}
This is supported on crate feature compute only.
Expand description

Defines saturating multiplication operation for primitive arrays

Associated Types

Required methods

Implementors