rust-itertools / itertools

Extra iterator adaptors, iterator methods, free functions, and macros.
https://docs.rs/itertools/
Apache License 2.0
2.72k stars 309 forks source link

Implement Clone for CircularTupleWindows #685

Closed zachs18 closed 1 year ago

zachs18 commented 1 year ago

The current implementation of CircularTupleWindows uses std::iter::Cycle<I>, which already requires the underlying iterator implement Clone, so this is a simple addition.