//! This module defines the `JoinAlgo` trait, used as a base for join
//! algorithms.
use{kermit_iters::JoinIterable,kermit_parser::JoinQuery,std::collections::HashMap};/// The `JoinAlgo` trait is used as a base for join algorithms.
pubtraitJoinAlgo<DS>
where
DS: JoinIterable,
{/// Joins the given iterables based on the specified join plan.
/// Returns an iterator over the resulting join.
fnjoin_iter(query: JoinQuery, datastructures:HashMap<String, &DS>,
)-> impl Iterator<Item = Vec<usize>>;}