Trait polars_ops::frame::join::SeriesJoin

source ·
pub trait SeriesJoin: SeriesSealed + Sized {
    // Provided methods
    fn hash_join_inner(
        &self,
        other: &Series,
        validate: JoinValidation,
        join_nulls: bool
    ) -> PolarsResult<(InnerJoinIds, bool)> { ... }
    fn hash_join_outer(
        &self,
        other: &Series,
        validate: JoinValidation,
        join_nulls: bool
    ) -> PolarsResult<(PrimitiveArray<IdxSize>, PrimitiveArray<IdxSize>)> { ... }
}

Provided Methods§

source

fn hash_join_inner( &self, other: &Series, validate: JoinValidation, join_nulls: bool ) -> PolarsResult<(InnerJoinIds, bool)>

source

fn hash_join_outer( &self, other: &Series, validate: JoinValidation, join_nulls: bool ) -> PolarsResult<(PrimitiveArray<IdxSize>, PrimitiveArray<IdxSize>)>

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl SeriesJoin for Series

Implementors§