Updates the value of "vec" LWW-Vector. The value property is a map of new values to apply to the "vec" LWW-Map.

interface JsonCodecInsVecOperation {
    obj: JsonCodecTimestamp;
    op: "ins_vec";
    value: [index: number, value: JsonCodecTimestamp][];
}

Hierarchy (view full)

Properties

Properties

Object on which to perform the operation.

For "val" CRDT object, if omitted, or set to falsy value, or equal to origin [0, 0], the "set" operation is applied to the root object, which is LWW Register of a pointer to another CRDT data type.

op: "ins_vec"

Mnemonic.

value: [index: number, value: JsonCodecTimestamp][]

A map of values to apply to the "vec" LWW-Vector object.