pub trait NumOpsDispatch: Debug {
    fn subtract(&self, rhs: &Series) -> Result<Series, PolarsError> { ... }
    fn add_to(&self, rhs: &Series) -> Result<Series, PolarsError> { ... }
    fn multiply(&self, rhs: &Series) -> Result<Series, PolarsError> { ... }
    fn divide(&self, rhs: &Series) -> Result<Series, PolarsError> { ... }
    fn remainder(&self, rhs: &Series) -> Result<Series, PolarsError> { ... }
}

Provided Methods

Implementors