public static extern bool remove_value(SetHandle handle, PrimitiveValue value, out NativeException ex);
internal RealmSet(Realm realm, SetHandle adoptedSet, RealmObjectBase.Metadata metadata) : base(realm, metadata) { _setHandle = adoptedSet; }
public static extern IntPtr freeze(SetHandle handle, SharedRealmHandle frozen_realm, out NativeException ex);
public static extern void get_value(SetHandle handle, IntPtr link_ndx, out PrimitiveValue value, out NativeException ex);
public static extern IntPtr snapshot(SetHandle list, out NativeException ex);
public static extern bool get_is_frozen(SetHandle handle, out NativeException ex);
public static extern IntPtr add_notification_callback(SetHandle handle, IntPtr managedSetHandle, NotificationCallbackDelegate callback, out NativeException ex);
public static extern IntPtr get_thread_safe_reference(SetHandle handle, out NativeException ex);
public static extern void clear(SetHandle handle, out NativeException ex);
public static extern IntPtr size(SetHandle handle, out NativeException ex);
public static extern bool overlaps(SetHandle handle, CollectionHandleBase other_handle, out NativeException ex);
public static extern bool is_superset_of(SetHandle handle, CollectionHandleBase other_handle, [MarshalAs(UnmanagedType.I1)] bool proper, out NativeException ex);
public static extern void union_with(SetHandle handle, CollectionHandleBase other_handle, out NativeException ex);
public static extern void symmetric_except_with(SetHandle handle, CollectionHandleBase other_handle, out NativeException ex);
public static extern bool set_equals(SetHandle handle, CollectionHandleBase other_handle, out NativeException ex);