-
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 const_char_classify
#132241
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
ultrabear
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
Oct 27, 2024
jieyouxu
added a commit
to jieyouxu/rust
that referenced
this issue
Oct 28, 2024
Support `char::is_digit` in const contexts. This PR implements [`feature(const_char_is_digit)` rust-lang#132241](rust-lang#132241)
rust-timer
added a commit
to rust-lang-ci/rust
that referenced
this issue
Oct 28, 2024
Rollup merge of rust-lang#132242 - ultrabear:const_is_digit, r=scottmcm Support `char::is_digit` in const contexts. This PR implements [`feature(const_char_is_digit)` rust-lang#132241](rust-lang#132241)
This was referenced Nov 2, 2024
ultrabear
changed the title
Tracking Issue for
Tracking Issue for Nov 5, 2024
const_char_is_digit
const_char_classify
bors
added a commit
to rust-lang-ci/rust
that referenced
this issue
Nov 6, 2024
…=jhpratt make char::is_whitespace unstably const I am adding this to the existing rust-lang#132241 feature gate, since `is_digit` and `is_whitespace` seem similar enough that one can group them together.
github-actions bot
pushed a commit
to rust-lang/miri
that referenced
this issue
Nov 9, 2024
make char::is_whitespace unstably const I am adding this to the existing rust-lang/rust#132241 feature gate, since `is_digit` and `is_whitespace` seem similar enough that one can group them together.
lnicola
pushed a commit
to lnicola/rust-analyzer
that referenced
this issue
Nov 28, 2024
make char::is_whitespace unstably const I am adding this to the existing rust-lang/rust#132241 feature gate, since `is_digit` and `is_whitespace` seem similar enough that one can group them together.
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(const_char_is_digit)]
#![feature(const_char_classify)]
This is a tracking issue for supporting
char::is_digit
andchar::is_whitespace
in const scenarios.Public API
Steps / History
char::is_digit
in const contexts. #132242Unresolved Questions
The text was updated successfully, but these errors were encountered: