[][src]Trait polars::prelude::LhsNumOps

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

Associated Types

type Output

Loading content...

Required methods

fn add(self, rhs: Rhs) -> Self::Output

fn sub(self, rhs: Rhs) -> Self::Output

fn div(self, rhs: Rhs) -> Self::Output

fn mul(self, rhs: Rhs) -> Self::Output

Loading content...

Implementors

impl<T, '_> LhsNumOps<&'_ Series> for T where
    T: Num + NumCast
[src]

type Output = Series

Loading content...