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

Method extend

src/repr/src/row.rs:2228–2236  ·  view source on GitHub ↗
(&mut self, iter: I)

Source from the content-addressed store, hash-verified

2226 /// Extend an existing `Row` with additional `Datum`s.
2227 #[inline]
2228 pub fn extend<'a, I, D>(&mut self, iter: I)
2229 where
2230 I: IntoIterator<Item = D>,
2231 D: Borrow<Datum<'a>>,
2232 {
2233 for datum in iter {
2234 push_datum(&mut self.row.data, *datum.borrow())
2235 }
2236 }
2237
2238 /// Extend an existing `Row` with additional `Datum`s.
2239 ///

Callers 15

platform.spec.tsFile · 0.45
utils.tsFile · 0.45
td_snippetFunction · 0.45
workflow_defaultFunction · 0.45
workflow_cdcFunction · 0.45
workflow_cdcFunction · 0.45
workflow_migrationFunction · 0.45
run_onceFunction · 0.45
workflow_defaultFunction · 0.45
workflow_nightlyFunction · 0.45
workflow_migrationFunction · 0.45
get_sharded_filesFunction · 0.45

Calls 2

push_datumFunction · 0.85
borrowMethod · 0.45

Tested by 12

test_conn_startupFunction · 0.36
mainFunction · 0.36
__init__Method · 0.36
create_input_dataMethod · 0.36
mergeMethod · 0.36
add_failuresMethod · 0.36
getMethod · 0.36
add_update_statementsMethod · 0.36
seedsMethod · 0.36