Trait polars::prelude::SeriesJoin

source ·
pub trait SeriesJoin: Sized + SeriesSealed {
    // Provided methods
    fn hash_join_inner(
        &self,
        other: &Series,
        validate: JoinValidation,
        join_nulls: bool
    ) -> Result<((Vec<u32>, Vec<u32>), bool), PolarsError> { ... }
    fn hash_join_outer(
        &self,
        other: &Series,
        validate: JoinValidation,
        join_nulls: bool
    ) -> Result<(PrimitiveArray<u32>, PrimitiveArray<u32>), PolarsError> { ... }
}
Available on crate feature polars-ops only.

Provided Methods§

source

fn hash_join_inner( &self, other: &Series, validate: JoinValidation, join_nulls: bool ) -> Result<((Vec<u32>, Vec<u32>), bool), PolarsError>

source

fn hash_join_outer( &self, other: &Series, validate: JoinValidation, join_nulls: bool ) -> Result<(PrimitiveArray<u32>, PrimitiveArray<u32>), PolarsError>

Object Safety§

This trait is not object safe.

Implementors§