pub trait NumOpsDispatchChecked: Debug {
    fn checked_div(&self, rhs: &Series) -> Result<Series, PolarsError> { ... }
    fn checked_div_num<T>(&self, _rhs: T) -> Result<Series, PolarsError>
    where
        T: ToPrimitive
, { ... } }

Provided Methods

Checked integer division. Computes self / rhs, returning None if rhs == 0 or the division results in overflow.

Implementors