-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Prelude: Map improvements Use `uninitialized` intrinsic to have "empty" `MapEntry` objects in the `Map`'s `_entries` field, rather than the previous approach of having an array of `MapEntry?` values. This approach adds a bit more logical overhead, but it significantly reduces the amount of allocations when working with `MapEntry` values, and also eliminates the need for `flattenOption`. * Updating process_callstack test, because the contents of prelude changed
- Loading branch information
Showing
3 changed files
with
81 additions
and
65 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