-
Notifications
You must be signed in to change notification settings - Fork 13k
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
Tracking Issue for int_from_ascii
#134821
Labels
C-tracking-issue
Category: An issue tracking the progress of sth. like the implementation of an RFC
T-libs-api
Relevant to the library API team, which will review and decide on the PR/issue.
Comments
niklasf
added
C-tracking-issue
Category: An issue tracking the progress of sth. like the implementation of an RFC
T-libs-api
Relevant to the library API team, which will review and decide on the PR/issue.
labels
Dec 27, 2024
This was referenced Dec 27, 2024
Opened PR #134824 with an implementation. |
niklasf
added a commit
to niklasf/rust
that referenced
this issue
Dec 27, 2024
Provides unstable `T::from_ascii()` and `T::from_ascii_radix()` for integer types `T`, as drafted in tracking issue rust-lang#134821. To deduplicate documentation without additional macros, implementations of `isize` and `usize` no longer delegate to equivalent integer types. After rust-lang#132870 they are inlined anyway.
niklasf
added a commit
to niklasf/rust
that referenced
this issue
Dec 27, 2024
Provides unstable `T::from_ascii()` and `T::from_ascii_radix()` for integer types `T`, as drafted in tracking issue rust-lang#134821. To deduplicate documentation without additional macros, implementations of `isize` and `usize` no longer delegate to equivalent integer types. After rust-lang#132870 they are inlined anyway.
bors
added a commit
to rust-lang-ci/rust
that referenced
this issue
Jan 16, 2025
Implement `int_from_ascii` (rust-lang#134821) Provides unstable `T::from_ascii()` and `T::from_ascii_radix()` for integer types `T`, as drafted in tracking issue rust-lang#134821. To deduplicate documentation without additional macros, implementations of `isize` and `usize` no longer delegate to equivalent integer types. After rust-lang#132870 they are inlined anyway.
bors
added a commit
to rust-lang-ci/rust
that referenced
this issue
Jan 30, 2025
Implement `int_from_ascii` (rust-lang#134821) Provides unstable `T::from_ascii()` and `T::from_ascii_radix()` for integer types `T`, as drafted in tracking issue rust-lang#134821. To deduplicate documentation without additional macros, implementations of `isize` and `usize` no longer delegate to equivalent integer types. After rust-lang#132870 they are inlined anyway.
bors
added a commit
to rust-lang-ci/rust
that referenced
this issue
Jan 30, 2025
Implement `int_from_ascii` (rust-lang#134821) Provides unstable `T::from_ascii()` and `T::from_ascii_radix()` for integer types `T`, as drafted in tracking issue rust-lang#134821. To deduplicate documentation without additional macros, implementations of `isize` and `usize` no longer delegate to equivalent integer types. After rust-lang#132870 they are inlined anyway.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
C-tracking-issue
Category: An issue tracking the progress of sth. like the implementation of an RFC
T-libs-api
Relevant to the library API team, which will review and decide on the PR/issue.
Feature gate:
#![feature(int_from_ascii)]
This is a tracking issue for
int_from_ascii
, providing equivalent methods to{usize,u8,u16,u32,u64,u128,isize,i8,i16,i32,i64,i128}::from_str()
andfrom_str_radix()
that allow working directly on byte slices, in order to skip UTF-8 validation.Public API
For each integer type
T
(usize
,u8
,u16
,u32
,u64
,u128
,isize
,i8
,i16
,i32
,i64
,i128
):Steps / History
int_from_ascii
(#134821) #134824Unresolved Questions
Footnotes
https://std-dev-guide.rust-lang.org/feature-lifecycle/stabilization.html ↩
The text was updated successfully, but these errors were encountered: