MCPcopy Create free account
hub / github.com/comnik/declarative-dataflow / Join

Class Join

src/plan/join.rs:25–32  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

23/// sources.
24#[derive(Hash, PartialEq, Eq, PartialOrd, Ord, Clone, Debug, Serialize, Deserialize)]
25pub struct Join<P1: Implementable, P2: Implementable> {
26 /// TODO
27 pub variables: Vec<Var>,
28 /// Plan for the left input.
29 pub left_plan: Box<P1>,
30 /// Plan for the right input.
31 pub right_plan: Box<P2>,
32}
33
34fn attribute_attribute<'b, T, I, S>(
35 nested: &mut Iterative<'b, S, u64>,

Callers 1

join_after_inputFunction · 0.85

Calls

no outgoing calls

Tested by 1

join_after_inputFunction · 0.68