pub trait NumOpsDispatchChecked {
    // Required methods
    fn checked_div(&self, rhs: &Series) -> Result<Series, PolarsError>;
    fn checked_div_num<T>(&self, _rhs: T) -> Result<Series, PolarsError>
       where T: ToPrimitive;
}
Available on crate feature checked_arithmetic only.

Required Methods§

source

fn checked_div(&self, rhs: &Series) -> Result<Series, PolarsError>

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

source

fn checked_div_num<T>(&self, _rhs: T) -> Result<Series, PolarsError>
where T: ToPrimitive,

Object Safety§

This trait is not object safe.

Implementors§