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

Method put_crdt_branch

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

Source from the content-addressed store, hash-verified

1548 }
1549
1550 fn put_crdt_branch(&mut self, key: &[u8; 12], value: &[u8; 24]) -> PristineResult<()> {
1551 let mut table = self.txn.open_table(BRANCHES)?;
1552 table.insert(key, value)?;
1553 Ok(())
1554 }
1555
1556 fn put_crdt_trunk_branch(
1557 &mut self,

Callers 4

put_branchFunction · 0.80
put_branchFunction · 0.80
update_branch_stateFunction · 0.80

Calls 1

insertMethod · 0.45