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

`CircularTupleWindows` does not need phantom data #808

Closed Philippe-Cholet closed 10 months ago

Philippe-Cholet commented 10 months ago

Quick fix.

After I randomly took a look at this, I realized this field never was needed because iter type owns a T. I should have realized that last time I updated this struct.

I checked other phantom data fields in the library but that's the only useless one.