MCPcopy Create free account
hub / github.com/NodeDB-Lab/nodedb / put_op

Function put_op

nodedb-array/src/sync/op_codec.rs:64–71  ·  view source on GitHub ↗
(array: &str, ms: u64)

Source from the content-addressed store, hash-verified

62 }
63
64 fn put_op(array: &str, ms: u64) -> ArrayOp {
65 ArrayOp {
66 header: header(array, ms),
67 kind: ArrayOpKind::Put,
68 coord: vec![CoordValue::Int64(1)],
69 attrs: Some(vec![CellValue::Null]),
70 }
71 }
72
73 fn delete_op(array: &str, ms: u64) -> ArrayOp {
74 ArrayOp {

Callers 1

roundtrip_putFunction · 0.70

Calls 1

headerFunction · 0.70

Tested by 1

roundtrip_putFunction · 0.56