MCPcopy Create free account
hub / github.com/MaterializeInc/materialize / from_iter

Method from_iter

src/sql/src/names.rs:2376–2380  ·  view source on GitHub ↗
(iter: T)

Source from the content-addressed store, hash-verified

2374
2375impl FromIterator<(CatalogItemId, GlobalId)> for ResolvedIds {
2376 fn from_iter<T: IntoIterator<Item = (CatalogItemId, GlobalId)>>(iter: T) -> Self {
2377 let mut ids = ResolvedIds::empty();
2378 ids.extend(iter);
2379 ids
2380 }
2381}
2382
2383impl Extend<(CatalogItemId, GlobalId)> for ResolvedIds {

Callers

nothing calls this directly

Calls 4

DependencyIdsClass · 0.85
extendMethod · 0.45
collectMethod · 0.45
into_iterMethod · 0.45

Tested by

no test coverage detected