MCPcopy Create free account
hub / github.com/apache/datafusion / iter

Method iter

datafusion/optimizer/src/join_key_set.rs:132–134  ·  view source on GitHub ↗

Return an iterator over the join keys in this set

(&self)

Source from the content-addressed store, hash-verified

130
131 /// Return an iterator over the join keys in this set
132 pub fn iter(&self) -> impl Iterator<Item = (&Expr, &Expr)> {
133 self.inner.iter().map(|(l, r)| (l, r))
134 }
135}
136
137/// Custom comparison operation to avoid copying owned values

Callers 15

bench_mergeFunction · 0.45
bench_no_mergeFunction · 0.45
wrap_branchFunction · 0.45
align_plan_to_schemaFunction · 0.45
has_all_column_refsFunction · 0.45
replace_qualified_nameFunction · 0.45
schema_columnsFunction · 0.45
insert_intersectionMethod · 0.45

Calls 1

mapMethod · 0.45