Hi,
Thanks for making this great library!
I came across this today, and it seems like it should be possible to implement FusedIterator, ExactSizeIterator, and DoubleEndedIterator for Vec's IntoIter and probably others too without too much complexity.
I was thinking ExactSizeIterator at least would be useful when using these data types to extend heap allocated structures so they can allocate the correct size up front. The other traits likely have performance or functional benefits in other situations too.
What do you think? Are they intentionally not implemented yet?
Hi,
Thanks for making this great library!
I came across this today, and it seems like it should be possible to implement
FusedIterator,ExactSizeIterator, andDoubleEndedIteratorforVec'sIntoIterand probably others too without too much complexity.I was thinking
ExactSizeIteratorat least would be useful when using these data types to extend heap allocated structures so they can allocate the correct size up front. The other traits likely have performance or functional benefits in other situations too.What do you think? Are they intentionally not implemented yet?