Type Alias XorDataStorageOperation
XorDataStorageOperation : {
operation: "xor";
value: number;
}
operation: "xor";
value: number;
}
Type declaration
Readonly
operation: "xor"Readonly
value: numberA value for the operation to apply against the current data storage value.
See
DataStorageOperation for all possible operation subtypes.
Applies a bitwise XOR to the current value of the key with
value
.