realm / realm-kotlin

Kotlin Multiplatform and Android SDK for the Realm Mobile Database: Build Better Apps Faster.
Apache License 2.0
889 stars 52 forks source link

Optimize `indexOf` and `contains` for `RealmList` #1625

Closed rorbech closed 3 months ago

rorbech commented 5 months ago

Most of the ListOperator implementations could utilize the C-API realm_list_find method to prevent moving all list elements to memory and matching them in Kotlin.