Realm Results
interface RealmResults<T : BaseRealmObject> : List<T> , Deleteable, Versioned
Content copied to clipboard
A Realm Result holds the results of querying the Realm.
See also
Functions
as Flow
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.
contains All
Link copied to clipboard
last Index Of
Link copied to clipboard
list Iterator
Link copied to clipboard
Properties
Extensions
copy From Realm
Link copied to clipboard
inline fun <T : TypedRealmObject> RealmResults<T>.copyFromRealm(depth: UInt = UInt.MAX_VALUE): List<T>
Content copied to clipboard
Makes an unmanaged in-memory copy of the elements in a RealmResults. This is a deep copy that will copy all referenced objects.