-
Notifications
You must be signed in to change notification settings - Fork 48
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
const-generics #51
Labels
Comments
|
2020-10-26:
|
In the past, there have been various "procedural RFCs" that specify functionality that has already been deemed desirable, and therefore not required the full comment period (e.g. rust-lang/rfcs#2300, rust-lang/rfcs#2591). Perhaps this is another such situation. |
2021-04-07: news since the last update:
#![feature(const_generics_defaults)]
struct WithDefault<const N: usize = 3> {
inner: [u8; N],
} current topics:
|
2021-05-18
|
2021-07-06
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Summary
Implement and design the
const_generics
feature with the initial goal of stabilizing themin_const_generics
subset.Info
What is this issue?
This issue represents an active project group. It is meant to be used for
the group to post updates to the lang team (and others) in a lightweight
fashion. Please do not use the comments here for discussion, that should be kept
in the Zulip stream (discussion comments here will be marked as off-topic).
The text was updated successfully, but these errors were encountered: