Trait polars_core::datatypes::NumericNative
source · 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;
}