Trait polars::chunked_array::object::LhsNumOps[][src]

pub trait LhsNumOps {
    type Output;
    fn add(self, rhs: &Series) -> Self::Output;
fn sub(self, rhs: &Series) -> Self::Output;
fn div(self, rhs: &Series) -> Self::Output;
fn mul(self, rhs: &Series) -> Self::Output;
fn rem(self, rem: &Series) -> Self::Output; }

Associated Types

Required methods

Implementors