iter-enum

crates.io docs.rs license rustc build status

#[derive(Iterator, DoubleEndedIterator, ExactSizeIterator, Extend)] for enums.

Usage

Add this to your Cargo.toml:

toml [dependencies] iter-enum = "1"

Compiler support: requires rustc 1.31+

Examples

```rust use iter_enum::*;

[derive(Iterator, DoubleEndedIterator, ExactSizeIterator, FusedIterator, Extend)]

enum Either { A(A), B(B), }

fn foo(x: i32) -> impl Iterator { if x > 0 { Either::A(x..=0) } else { Either::B(Some(x).into_iter()) } } ```

See [auto_enums] crate for how to automate patterns like this.

Supported traits

Optional features

Related Projects

License

Licensed under either of Apache License, Version 2.0 or MIT license at your option.

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.