MCPcopy Create free account
hub / github.com/atomicdotdev/atomic / put_crdt_branch

Method put_crdt_branch

atomic-core/src/pristine/txn/write/mod.rs:1598–1602  ·  view source on GitHub ↗
(&mut self, key: &[u8; 12], value: &[u8; 24])

Source from the content-addressed store, hash-verified

1596 }
1597
1598 fn put_crdt_branch(&mut self, key: &[u8; 12], value: &[u8; 24]) -> PristineResult<()> {
1599 let mut table = self.txn.open_table(BRANCHES)?;
1600 table.insert(key, value)?;
1601 Ok(())
1602 }
1603
1604 fn put_crdt_trunk_branch(
1605 &mut self,

Callers 4

put_branchFunction · 0.80
put_branchFunction · 0.80
update_branch_stateFunction · 0.80

Calls 1

insertMethod · 0.45