pub trait NumericNative: PartialOrd + NativeType + Num + NumCast + Zero + Simd + Simd8 + Sum<Self> + Add<Output = Self> + Sub<Output = Self> + Mul<Output = Self> + Div<Output = Self> + Rem<Output = Self> + AddAssign + SubAssign + Bounded + FromPrimitive + IsFloat + NativeArithmetics {
    type POLARSTYPE: PolarsNumericType;
}

Required Associated Types§

Implementations on Foreign Types§

Implementors§