Skip to content
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

[stdlib] Add append() and extend() unsafe_no_checks parameter #4151

Open
wants to merge 17 commits into
base: main
Choose a base branch
from

Conversation

martinvuyk
Copy link
Contributor

@martinvuyk martinvuyk commented Mar 15, 2025

Add append() and extend() unsafe_no_checks parameter.

This gives the best performance without having to use pointers directly when memory was reserved previously.

Merge after #4156 and #4158

@martinvuyk martinvuyk requested a review from a team as a code owner March 15, 2025 00:10
@martinvuyk martinvuyk marked this pull request as draft March 15, 2025 00:17
@soraros
Copy link
Contributor

soraros commented Mar 15, 2025

If we do want this change, I'd like to keep no_check keyword only.

Signed-off-by: martinvuyk <[email protected]>
@martinvuyk martinvuyk marked this pull request as ready for review March 15, 2025 14:18
@martinvuyk martinvuyk marked this pull request as draft March 16, 2025 15:04
Signed-off-by: martinvuyk <[email protected]>
if self._len >= self.capacity:
self._realloc(self.capacity * 2 | Int(self.capacity == 0))
self._unsafe_next_uninit_ptr().init_pointee_move(value^)
self._len += 1

fn append[*, unsafe_no_checks: Bool](mut self, owned value: T):
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@ConnorGray WDYT about this? We've talked about this in the past.

modularbot pushed a commit that referenced this pull request Mar 22, 2025
…logic (#58174)

[External] [stdlib] Remove `List.pop()`'s buffer shrinking (realloc)
logic

Remove `List.pop()`'s buffer shrinking (realloc) logic.

This is a split-off from #4151. This
change is useful to avoid redundant (and surprising) buffer
reallocations.

Co-authored-by: martinvuyk <[email protected]>
Closes #4156
MODULAR_ORIG_COMMIT_REV_ID: 178d81969dc2bce2bc7fb94a727feb0f5d56e3bb
@martinvuyk martinvuyk marked this pull request as ready for review April 1, 2025 17:50
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants