I am searching for something like this:
let iter = vec![1, 2, 40, 3].into_iter();
let (pos, elt) = iter.position_find(|&x| x > 10);
// ^ does not exist
println!("{pos} {elt}"); // 2 40
Both Iterator::position
and Iterator::find
advance the iterator, so I can't use both unless I'm cloning the iterator, which is unnecessary here.
You can use
find
together withenumerate
:If you don't want to write this out every time, you could even turn it into an extension trait to automatically implement it as a method on all iterators: