Trait polars_ops::frame::join::JoinDispatch

source ·
pub trait JoinDispatch: IntoDf {
    // Provided methods
    unsafe fn _create_left_df_from_slice(
        &self,
        join_tuples: &[IdxSize],
        left_join: bool,
        sorted_tuple_idx: bool,
    ) -> DataFrame { ... }
    fn _full_join_from_series(
        &self,
        other: &DataFrame,
        s_left: &Series,
        s_right: &Series,
        args: JoinArgs,
    ) -> PolarsResult<DataFrame> { ... }
}

Provided Methods§

source

unsafe fn _create_left_df_from_slice( &self, join_tuples: &[IdxSize], left_join: bool, sorted_tuple_idx: bool, ) -> DataFrame

§Safety

Join tuples must be in bounds

source

fn _full_join_from_series( &self, other: &DataFrame, s_left: &Series, s_right: &Series, args: JoinArgs, ) -> PolarsResult<DataFrame>

Implementations on Foreign Types§

source§

impl JoinDispatch for DataFrame

Implementors§