-
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] Update String.as_bytes
to return a span
#3636
Conversation
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.
Great, thank you! May be good to changelog this. Do you mind adding an entry, please?
fix modular#3633 Signed-off-by: Yiwu Chen <[email protected]>
!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. |
[External] [stdlib] Update `String.as_bytes` to return a span Change `String.as_bytes()` to return a `Span[UInt8]` instead of a `List[Int8]`. The old behavior can be achieved by using `List(s.as_bytes())`. Fixes #3633 Co-authored-by: soraros <[email protected]> Closes #3636 MODULAR_ORIG_COMMIT_REV_ID: 8200c8dbda52d089d84de94c2d959a1acc0562a8
Landed in 34da3f3! Thank you for your contribution 🎉 |
[External] [stdlib] Update `String.as_bytes` to return a span Change `String.as_bytes()` to return a `Span[UInt8]` instead of a `List[Int8]`. The old behavior can be achieved by using `List(s.as_bytes())`. Fixes #3633 Co-authored-by: soraros <[email protected]> Closes #3636 MODULAR_ORIG_COMMIT_REV_ID: 8200c8dbda52d089d84de94c2d959a1acc0562a8
fix #3633