Skip to content

Commit

Permalink
Document adt_const_params feature in Unstable Book
Browse files Browse the repository at this point in the history
  • Loading branch information
Shadlock0133 committed Mar 2, 2023
1 parent 13471d3 commit 69e5d7d
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions src/doc/unstable-book/src/language-features/adt-const-params.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
# `adt_const_params`

The tracking issue for this feature is: [#95174]

[#95174]: https://github.com/rust-lang/rust/issues/95174

------------------------

Allows for using more complex types for const parameters, such as structs or enums.

```rust
#![feature(adt_const_params)]

#[derive(PartialEq, Eq)]
enum Foo {
A,
B,
C,
}

#[derive(PartialEq, Eq)]
struct Bar {
flag: bool,
}

fn is_foo_a_and_bar_true<const F: Foo, const B: Bar>() -> bool {
match (F, B.flag) {
(Foo::A, true) => true,
_ => false,
}
}
```

0 comments on commit 69e5d7d

Please sign in to comment.