find_all
find_all is capable of finding all indexes of elements where a given predicate is met and therefore aims to be a simple alternative with (nearly) identical interface to the find method (this difference being returning an Option<Vec<usize>> instead of Option<usize>)
use FindAll;
let test_data = ;
let indexes = test_data.iter.find_all;
assert_eq!;
let indexes = test_data.iter.find_all;
assert_eq!;
License: GPL-3.0-only