-
Notifications
You must be signed in to change notification settings - Fork 61
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix list indexof, remove and contains #1666
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good to me
packages/cinterop/src/nativeDarwin/kotlin/io/realm/kotlin/internal/interop/RealmInterop.kt
Outdated
Show resolved
Hide resolved
@@ -252,4 +255,97 @@ class RealmAnyNestedListNotificationTest : FlowableTests, DeletableEntityNotific | |||
override fun closeRealmInsideFlowThrows() { | |||
TODO("Not yet implemented") | |||
} | |||
|
|||
@Test | |||
@Ignore // https://github.com/realm/realm-core/issues/7264 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
realm/realm-core#7264 has been closed
} | ||
} | ||
@Test | ||
@Ignore // https://github.com/realm/realm-core/issues/7264 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
realm/realm-core#7264 has been closed.
This PR passes arguments to
RealmList
sindexOf
,remove
andcontains
to core instead of relying on Kotlin object equality checks.Closes #1625 RKOTLIN-995