AndWass / pushgen

Apache License 2.0
27 stars 4 forks source link

Add Either support #28

Closed epage closed 3 years ago

epage commented 3 years ago

This ensures users can abstract over two different types of Generators, as long as their Output is the same.

This mirrors itertools::Either which re-exports either::Either. In our case, we also have to add impl Generator.

AndWass commented 3 years ago

Looks good! Thank you!