Skip to main content

nested_loop_join

Function nested_loop_join 

Source
pub fn nested_loop_join<L, R, O, P, OF>(
    left: &[L],
    right: &[R],
    predicate: P,
    output_fn: OF,
) -> Vec<O>
where P: Fn(&L, &R) -> bool, OF: Fn(&L, &R) -> O,
Expand description

Performs a nested loop join using a predicate function.