MCPcopy Create free account
hub / github.com/clockworklabs/SpacetimeDB / join

Method join

crates/execution/src/lib.rs:324–329  ·  view source on GitHub ↗
(self, with: Self)

Source from the content-addressed store, hash-verified

322 }
323
324 fn join(self, with: Self) -> Self {
325 match with {
326 Self::Row(ptr) => self.append(ptr),
327 Self::Join(ptrs) => ptrs.into_iter().fold(self, |tup, ptr| tup.append(ptr)),
328 }
329 }
330}
331
332pub struct DeltaScanIter<'a> {

Callers 15

getInitialsFunction · 0.80
renderMessageFunction · 0.80
AppFunction · 0.80
renderMessageFunction · 0.80
MessageItemFunction · 0.80
RoomSettingsModalFunction · 0.80
AppFunction · 0.80
index.tsFile · 0.80
getInitialsFunction · 0.80
MessageItemFunction · 0.80
index.tsFile · 0.80

Calls 2

appendMethod · 0.45
into_iterMethod · 0.45