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
A drop-in replacement for std::iter::Peekable which adds a peek_nth method allowing the user to peek at a value several iterations forward without advancing the base iterator.
It is however not a drop-in replacement at the moment, since the methods next_if and next_if_eq isn't implemented.
The text was updated successfully, but these errors were encountered:
Currently the documentation for
itertools::peek_nth
says:It is however not a drop-in replacement at the moment, since the methods
next_if
andnext_if_eq
isn't implemented.The text was updated successfully, but these errors were encountered: