DITRGA

@interface DITRGA : NSObject

Represents a CRDT Replicated Growable Array (RGA) that can be upserted as part of a document or assigned to a property during an update of a document.

  • The array representation of the RGA.

    Declaration

    Objective-C

    @property (nonatomic, readonly) NSArray<id> *_Nonnull value;
  • Unavailable

    Undocumented

    Declaration

    Objective-C

    - (instancetype)init NS_UNAVAILABLE;
  • Returns YES if passed in RGA has the same value, otherwise returns NO.

    Declaration

    Objective-C

    - (BOOL)isEqualToRGA:(nonnull DITRGA *)rga;