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§
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>)>
Object Safety§
This trait is not object safe.