feat: add unsafe initialiser#12
Merged
Merged
Conversation
|
Any tests for these? |
Contributor
Author
Indirectly. All the initialisers get routed through this method. |
f6109f0 to
b8d77d8
Compare
Contributor
Author
|
Updated to use american english spelling of "initialise", to match existing APIs. |
JaapWijnen
reviewed
Jan 13, 2026
loonatick-src
approved these changes
Jan 13, 2026
JaapWijnen
approved these changes
Jan 13, 2026
This switches to the american spelling of initialise, to match the spelling of the existing Array initialiser that this mimics. *sigh* For internal consistency this also changes some (internal) functions to use american spelling as well. Although these are marked as public, that is due to Swift modularity limitations and they are actually internal functions not intended to be used outside this module, so this is not a breaking API change.
b8d77d8 to
ca3a52c
Compare
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Adds the initialiser equivalent of
Array(unsafeUninitialisedCapacity:initialisingWith:). Useful if you want to initialise all the values in parallel, for example.