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

Provided Methods

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

Implementors