DittoMutableRegister
Represents a mutable CRDT register that can be updated while updating a document.
This class can’t be instantiated directly. It’s returned automatically for any register property within an update block.
See also the register property of DittoMutableDocumentPath.
-
The value that is stored in the register.
-
Returns the register’s value as a
Stringif possible, otherwise the return value will benil. -
Returns the register’s value as a
String. If the register’s inner value isn’t aStringthe return value will be an empty string. -
Returns the register’s value as a
Boolif possible, otherwise the return value will benil. -
Returns the register’s value as a
Bool. If the register’s inner value isn’t aBoolthe return value will befalse. -
Returns the register’s value as an
Intif possible, otherwise the return value will benil. -
Returns the register’s value as an
Int. If the register’s inner value isn’t anIntthe return value will be 0. -
Returns the register’s value as a
UIntif possible, otherwise the return value will benil. -
Returns the register’s value as a
UInt. If the register’s inner value isn’t aUIntthe return value will be 0. -
Returns the register’s value as a
Floatif possible, otherwise the return value will benil. -
Returns the register’s value as a
Float. If the register’s inner value isn’t aFloatthe return value will be 0. -
Returns the register’s value as a
Doubleif possible, otherwise the return value will benil. -
Returns the register’s value as a
Double. If the register’s inner value isn’t aDoublethe return value will be 0. -
Returns the register’s value as an
Array<Any?>if possible, otherwise the return value will benil. -
Returns the register’s value as an
Array<Any?>. If the register’s inner value isn’t anArray<Any?>the return value will be an empty array. -
Returns the register’s value as a
[String: Any?]if possible, otherwise the return value will benil. -
Returns the register’s value as a
[String: Any?]. If the register’s inner value isn’t a[String: Any?]the return value will be an empty dictionary.
DittoMutableRegister Class Reference