RealmResults
A Realm Result holds the results of querying the Realm.
See also
Functions
Link copied to clipboard
Observe changes to the RealmResult. Once subscribed the flow will emit a InitialResults event and then a UpdatedResults on any change to the objects represented by the query backing the RealmResults. The flow will continue running indefinitely except if the results are from a backlinks property, then they will stop once the target object is deleted.
Link copied to clipboard
Link copied to clipboard
inline fun <T : TypedRealmObject> RealmResults<T>.copyFromRealm(depth: UInt = UInt.MAX_VALUE): List<T>
Makes an unmanaged in-memory copy of the elements in a RealmResults. This is a deep copy that will copy all referenced objects.
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Instantiates an unmanaged RealmDictionary containing all the elements of this iterable of Pairs of Strings and Ts.
Link copied to clipboard
Link copied to clipboard