1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
//! `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>`)
//!
//!
//! ```rust
//! use find_all::FindAll;
//! let test_data = [1, 2, 3, 4, 1, 1, 1, 1];
//! let indexes = test_data.iter().find_all(|num: &&i32| **num == 9);
//! assert_eq!(indexes, None);
//!
//! let indexes = test_data.iter().find_all(|num: &&i32| **num == 1);
//! assert_eq!(indexes, Some(vec![0,4,5,6,7]));
//! ```
/// ```rust
/// use find_all::FindAll;
///let test_data = vec![1, 2, 3, 4, 1, 1, 1, 1];
///
///let indexes = test_data.iter().find_all(|num: &&i32| **num == 1);
///assert_eq!(indexes, Some(Vec::from([0, 4, 5, 6, 7])));
///
///let test_data = vec![1, 2, 3, 4, 1, 1, 1, 1];
///let indexes = test_data.iter().find_all(|num| **num == 9);
///assert_eq!(indexes, None);
///
///let test_data = vec![
/// String::from("hello"),
/// String::from("goodbye"),
/// String::from("hello"),
///];
///let indexes = test_data.iter().find_all(|string| string.contains('o'));
///assert_eq!(indexes, Some(vec![0, 1, 2]));
/// ```