Trait polars::chunked_array::object::NumOpsDispatch
source · [−]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> { ... }
}
This is supported on crate feature
object
only.