pub fn hash_join<T, K, E, L, R>(
left: &[T],
right: &[T],
include_unmatched_left: bool,
include_unmatched_right: bool,
left_key: L,
right_key: R,
) -> Result<JoinPairs<T>, E>Expand description
Execute a generic hash join for equi-joins.
Callers provide key extraction so SQL-specific value and error types remain
outside alopex-core.