# project-const-generics **Repository Path**: mirrors_rust-lang/project-const-generics ## Basic Information - **Project Name**: project-const-generics - **Description**: No description available - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-01-26 - **Last Updated**: 2026-02-15 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 👋🏽 Const Generics Project Group ![project group status: active](https://img.shields.io/badge/status-active-brightgreen.svg) The const generics project group implements and designs the `const_generics` feature. Please refer to our [charter] for more information on our goals and current scope. Examples: ```rust struct Foo { field: [u8; N], } fn foo() -> Foo { Foo { field: [0; N], } } fn main() { match foo::<3>().field { [0, 0, 0] => {} // ok [_x, _y, _z] => panic!(), } } ``` Welcome to the repository for the Const Generics Project Group! This is the repository we use to organise our work. Please refer to our [charter] as well as our [github pages website][gh-pages] for more information on our goals and current scope. [gh-pages]: https://rust-lang.github.io/project-const-generics [charter]: ./CHARTER.md ## How Can I Get Involved? [You can find a list of the current members available on `rust-lang/team`.][team-toml] If you'd like to participate be sure to check out the relevant stream on [zulip][chat-link], feel free to introduce yourself over there and ask us any questions you have. [open issues]: /issues [chat-link]: https://rust-lang.zulipchat.com/#narrow/stream/260443-project-const-generics [team-toml]: https://github.com/rust-lang/team/blob/master/teams/project-const-generics.toml ## Building Documentation This repository is also an mdbook project. You can view and build it using the following command. ``` mdbook-skill-tree install && mdbook serve ```