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
$SUBJ. This means that next_if and other things I came to expect from the iterators that have peek() are not available.
Also, Pairs::peek() returns Option<Pair<...>> instead of Option<&Pair<...>> like the standard library's Peekable::peek() does.
A concern with just fixing it is that it's a breaking API change. But maybe it would make sense to do this if you're planning a new major release at some point?
The text was updated successfully, but these errors were encountered:
$SUBJ. This means that next_if and other things I came to expect from the iterators that have peek() are not available.
Also,
Pairs::peek()
returnsOption<Pair<...>>
instead ofOption<&Pair<...>>
like the standard library's Peekable::peek() does.A concern with just fixing it is that it's a breaking API change. But maybe it would make sense to do this if you're planning a new major release at some point?
The text was updated successfully, but these errors were encountered: