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