#iterator #enums #derive #double-ended #no-alloc #proc-macro

macro no-std iter-enum

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

13 releases (8 stable)

new 1.2.0 Jan 16, 2025
1.1.3 Jan 27, 2024
1.1.1 Jun 29, 2023
1.1.0 Mar 26, 2023
0.2.3 Nov 22, 2019

#1236 in Rust patterns

Download history 916/week @ 2024-09-27 622/week @ 2024-10-04 749/week @ 2024-10-11 926/week @ 2024-10-18 907/week @ 2024-10-25 1171/week @ 2024-11-01 1482/week @ 2024-11-08 957/week @ 2024-11-15 1078/week @ 2024-11-22 1426/week @ 2024-11-29 1277/week @ 2024-12-06 1204/week @ 2024-12-13 450/week @ 2024-12-20 416/week @ 2024-12-27 784/week @ 2025-01-03 861/week @ 2025-01-10

2,694 downloads per month
Used in 40 crates (6 directly)

Apache-2.0 OR MIT

24KB
172 lines

iter-enum

crates.io docs.rs license msrv github actions

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

Usage

Add this to your Cargo.toml:

[dependencies]
iter-enum = "1"

Examples

use iter_enum::*;

#[derive(Iterator, DoubleEndedIterator, ExactSizeIterator, FusedIterator, Extend)]
enum Either<A, B> {
    A(A),
    B(B),
}

fn foo(x: i32) -> impl Iterator<Item = i32> {
    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

  • rayon
    • Enable to use #[derive(ParallelIterator, IndexedParallelIterator, ParallelExtend)].
  • auto_enums: A library for to allow multiple return types by automatically generated enum.
  • derive_utils: A procedural macro helper for easily writing derives macros for enums.
  • io-enum: #[derive(Read, Write, Seek, BufRead)] for enums.

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.

Dependencies

~250–690KB
~16K SLoC