hyphae 1.0.2

Reactive cells and runtime primitives for rship
Documentation
mod count_by;
mod group_by;
mod inner_join;
mod internal;
mod left_join;
mod left_semi_join;
mod multi_left_join;
mod project;
mod project_cell;
mod project_many;
mod select;
mod select_cell;

pub use count_by::{CountByExt, CountByPlan};
pub use group_by::{GroupByExt, GroupByPlan};
pub use inner_join::{InnerJoinByKeyPlan, InnerJoinByPairPlan, InnerJoinExt};
pub use left_join::{LeftJoinExt, LeftJoinPlan};
pub use left_semi_join::{LeftSemiJoinExt, LeftSemiJoinPlan};
pub use multi_left_join::{MultiLeftJoinExt, MultiLeftJoinPlan};
pub use project::{ProjectMapExt, ProjectPlan};
pub use project_cell::{ProjectCellExt, ProjectCellPlan};
pub use project_many::{ProjectManyExt, ProjectManyPlan};
pub use select::{SelectExt, SelectPlan};
pub use select_cell::{SelectCellExt, SelectCellPlan};