Lines Matching refs:Vec
24 m.indices_of("exclude").unwrap().collect::<Vec<_>>(),
27 assert_eq!(m.indices_of("include").unwrap().collect::<Vec<_>>(), [5, 6]);
89 assert_eq!(m.indices_of("exclude").unwrap().collect::<Vec<_>>(), [4]);
90 assert_eq!(m.indices_of("include").unwrap().collect::<Vec<_>>(), [5]);
102 assert_eq!(m.indices_of("exclude").unwrap().collect::<Vec<_>>(), [4]);
103 assert_eq!(m.indices_of("include").unwrap().collect::<Vec<_>>(), [5]);
116 assert_eq!(m.indices_of("exclude").unwrap().collect::<Vec<_>>(), [4]);
117 assert_eq!(m.indices_of("include").unwrap().collect::<Vec<_>>(), [5]);
118 assert_eq!(m.indices_of("option").unwrap().collect::<Vec<_>>(), [7]);
131 assert_eq!(m.indices_of("exclude").unwrap().collect::<Vec<_>>(), [4]);
132 assert_eq!(m.indices_of("include").unwrap().collect::<Vec<_>>(), [5]);
133 assert_eq!(m.indices_of("option").unwrap().collect::<Vec<_>>(), [7]);
150 m.indices_of("option").unwrap().collect::<Vec<_>>(),
167 assert_eq!(m.indices_of("option").unwrap().collect::<Vec<_>>(), [2]);
179 assert_eq!(m.indices_of("option").unwrap().collect::<Vec<_>>(), [2, 5]);
180 assert_eq!(m.indices_of("flag").unwrap().collect::<Vec<_>>(), [6]);