You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently the Chunks, ChunksMut, ExactChunks and ExactChunksMut adapters does return None if an overflow occur in the Iterator::nth method.
I think this is not a good thing to have a silent "error", we must be consistent with other iterator adapters like enumerate and panic if an overflow is detected.
This has been talked in the tracking issue of the ExactChunks/Mut iterators adapters.