Beispiel #1
0
 internal abstract RealmCollectionBase <T> CreateCollection(Realm realm, CollectionHandleBase handle);
Beispiel #2
0
 internal override RealmCollectionBase <T> CreateCollection(Realm realm, CollectionHandleBase handle) => new RealmSet <T>(realm, (SetHandle)handle, Metadata);
Beispiel #3
0
 public static extern bool is_superset_of(SetHandle handle, CollectionHandleBase other_handle, [MarshalAs(UnmanagedType.I1)] bool proper, out NativeException ex);
Beispiel #4
0
 public static extern bool overlaps(SetHandle handle, CollectionHandleBase other_handle, out NativeException ex);
Beispiel #5
0
 public static extern void symmetric_except_with(SetHandle handle, CollectionHandleBase other_handle, out NativeException ex);
Beispiel #6
0
 public static extern void union_with(SetHandle handle, CollectionHandleBase other_handle, out NativeException ex);
Beispiel #7
0
 public static extern bool set_equals(SetHandle handle, CollectionHandleBase other_handle, out NativeException ex);
Beispiel #8
0
 internal NotificationTokenHandle(CollectionHandleBase root) : base(root)
 {
 }
Beispiel #9
0
 internal override RealmCollectionBase <KeyValuePair <string, TValue> > CreateCollection(Realm realm, CollectionHandleBase handle) => new RealmDictionary <TValue>(realm, (DictionaryHandle)handle, Metadata);
 internal NotificationTokenHandle(CollectionHandleBase root) : base(root.Root ?? root)
 {
     // We save this because RealmHandle doesn't support a parent chain like
     // NotificationToken -> List -> Realm
     _collectionHandle = root;
 }
 internal NotificationTokenHandle(CollectionHandleBase root) : base(root.Root ?? root)
 {
     // We save this because RealmHandle doesn't support a parent chain like
     // NotificationToken -> List -> Realm
     _collectionHandle = root;
 }