-
Notifications
You must be signed in to change notification settings - Fork 2.6k
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 String
__add__
with StringSlice
and StringLiteral
& optimize to not use List.resize()
#3591
[stdlib] Add String
__add__
with StringSlice
and StringLiteral
& optimize to not use List.resize()
#3591
Conversation
Signed-off-by: martinvuyk <martin.vuyklop@gmail.com>
String
__add__
with StringSlice
and optimize to not use List.resize()
String
__add__
with StringSlice
and StringLiteral
& optimize to not use List.resize()
d11e21d
to
f5533c7
Compare
f5533c7
to
19ed88a
Compare
…t.resize Signed-off-by: martinvuyk <martin.vuyklop@gmail.com>
Signed-off-by: martinvuyk <martin.vuyklop@gmail.com>
Signed-off-by: martinvuyk <martin.vuyklop@gmail.com>
Signed-off-by: martinvuyk <martin.vuyklop@gmail.com>
Signed-off-by: martinvuyk <martin.vuyklop@gmail.com>
Signed-off-by: martinvuyk <martin.vuyklop@gmail.com>
Signed-off-by: martinvuyk <martin.vuyklop@gmail.com>
19ed88a
to
36a4995
Compare
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.
LGTM once conflicts are addressed and then I can sync it. Thanks!
Signed-off-by: martinvuyk <martin.vuyklop@gmail.com>
Signed-off-by: martinvuyk <martin.vuyklop@gmail.com>
@JoeLoser fixed :) |
!sync |
✅🟣 This contribution has been merged 🟣✅ Your pull request has been merged to the internal upstream Mojo sources. It will be reflected here in the Mojo repository on the nightly branch during the next Mojo nightly release, typically within the next 24-48 hours. We use Copybara to merge external contributions, click here to learn more. |
Landed in 8cbfb43! Thank you for your contribution 🎉 |
…ringLiteral` & optimize to not use `List.resize()` (#49071) [External] [stdlib] Add `String` `__add__` with `StringSlice` and `StringLiteral` & optimize to not use `List.resize()` Add `String` `__add__` with `StringSlice` and `StringLiteral` & optimize to not use `List.resize()` ORIGINAL_AUTHOR=martinvuyk <110240700+martinvuyk@users.noreply.github.com> PUBLIC_PR_LINK=#3591 Co-authored-by: martinvuyk <110240700+martinvuyk@users.noreply.github.com> Closes #3591 MODULAR_ORIG_COMMIT_REV_ID: a01834b1eb829ffaa3e5bda5bd3fee05b3513774
Add
String
__add__
withStringSlice
andStringLiteral
& optimize to not useList.resize()