Trait polars_core::prelude::NumOpsDispatchChecked[][src]

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

Provided methods

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

Implementors