-
Notifications
You must be signed in to change notification settings - Fork 87
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Update realm-core to v12.12.0-7-g97ba3412b: Add realm_list_move to c-api (#6032) * Update bindings * Implement List.move * Add tests of List.move * Update CHANGELOG * Using xor for hash is too simple. Move(n, n).hashCode == Move(m, m).hashCode for all n, m. Instead we use Object.hash introduced in Dart 2.14. * Test List.move(n, n) is a no-op * Document List.move * Update CHANGELOG * Simplify a bit and make it more explicit that move(n, n) is a no-op * Use from/to for parameter names
- Loading branch information
Showing
8 changed files
with
151 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule realm-core
updated
10 files
+24 −0 | CHANGELOG.md | |
+9 −0 | src/realm.h | |
+9 −0 | src/realm/object-store/c_api/list.cpp | |
+7 −2 | src/realm/object-store/sync/sync_user.cpp | |
+53 −39 | src/realm/parser/driver.cpp | |
+5 −2 | src/realm/table.hpp | |
+36 −0 | test/object-store/c_api/c_api.cpp | |
+115 −1 | test/object-store/sync/app.cpp | |
+0 −23 | test/object-store/sync/flx_sync.cpp | |
+69 −0 | test/test_parser.cpp |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters