Tools to iterate over the values of a type.
See the [IntoEnumIterator
] trait.
```rust use enum_iterator::IntoEnumIterator;
enum Day { Monday, Tuesday, Wednesday, Thursday, Friday, Saturday, Sunday }
asserteq!(Day::intoenumiter().next(), Some(Day::Monday)); asserteq!(Day::intoenumiter().last(), Some(Day::Sunday)); ```
```rust use enum_iterator::IntoEnumIterator;
struct Foo { a: bool, b: u8, }
asserteq!(Foo::intoenumiter().next(), Some(Foo { a: false, b: 0 })); asserteq!(Foo::intoenumiter().last(), Some(Foo { a: true, b: 255 })); ```
All contributions shall be licensed under the 0BSD license.