Lines Matching refs:ArgMatches
67 - `ArgMatches::get_occurrences` support for argument values to be grouped by their occurrence
191 - Only put `ArgGroup` in `ArgMatches` when explicitly specified, fixing derives handling of option-…
366 Additionally, to avoid `ArgMatches` from borrowing (and for some features we
374 As an extension of that work, you can now call `ArgMatches::ids` to iterate
451 - `ArgAction::SetTrue`, requiring `ArgMatches::get_flag` instead of `ArgMatches::is_present`
452 - `ArgAction::Count`, requiring `ArgMatches::get_count` instead of `ArgMatches::occurrences_of`
453 - `ArgAction::Set`, requiring `ArgMatches::get_one` instead of `ArgMatches::value_of`
454 - `ArgAction::Append`, requiring `ArgMatches::get_many` instead of `ArgMatches::values_of`
483 - Looking up a group in `ArgMatches` now returns the arg `Id`s, rather than the values to reduce ov…
709 - When misusing `ArgMatches::value_of` and friends, debug asserts were turned into panics
727 - `ArgMatches::{value_of, value_of_os, value_of_os_lossy, value_of_t}` with `ArgMatches::{get_one,r…
728 - `ArgMatches::{values_of, values_of_os, values_of_os_lossy, values_of_t}` with `ArgMatches::{get_m…
729 - `ArgMatches::is_valid_arg` with `ArgMatches::{try_get_one,try_get_many}` (#3753)
730 - `ArgMatches::occurrences_of` with `ArgMatches::value_source` or `ArgAction::Count` (#3797)
731 - `ArgMatches::is_present` with `ArgMatches::contains_id` or `ArgAction::SetTrue` (#3797)
751 - Parsed, typed arguments via `Arg::value_parser` / `ArgMatches::{get_one,get_many}` (#2683, #3732)
755 - All `ArgMatches` getters do not assume required arguments (#2505)
756 - Add `ArgMatches::remove_*` variants to transfer ownership
757 - Add `ArgMatches::try_*` variants to avoid panics for developer errors (#3621)
780 - `ArgMatches::{try_,}contains_id` for checking if there are values for an argument that mirrors th…
787 - Set `ArgMatches::value_source` and `ArgMatches::occurrences_of` for external subcommands (#3732)
935 - Track caller for `ArgMatches` assertions so the user more easily sees where they need to fix the …
967 - *(matches)* Add `clap::ArgMatches::value_source` to determine what insert the value (#1345)
1005 - Added `ArgMatches::args_present()` to check if any args are present
1083 - Clean up quotes in `ArgMatches` asserts
1090 - For very limited cases, like `cargo`, expose `ArgMatches::is_valid_arg` to avoid panicing on unde…
1168 …3. *If using builder:* test your application under various circumstances to see if `ArgMatches` as…
1224 …3. *If using builder:* test your application under various circumstances to see if `ArgMatches` as…
1244 - `ArgMatches::is_present` no longer checks subcommand names
1260 `ArgSettings::AllowInvalidUtf8` and `ArgMatches::value_of_os` aren't used
1265 - `ArgMatches` panics on unknown arguments
1277 - Replaced `ArgMatches::usage` with `App::generate_usage`
1290 - Changed `ArgMatches::subcommand` to now return `Option<(&str, &ArgMatches)>`
1329 - Validate UTF-8 values, rather than panicing during `ArgMatches::value_of` thanks to `AppSettings:…
1330 - Debug builds will assert when the `ArgMatches` calls do not match the UTF-8 setting.
1364 - See `ArgMatches::grouped_values_of` behind `unstable-grouped` feature flag
1389 - `ArgMatches` panics on unknown arguments
2965 * `ArgMatches<'a, 'b>` => `ArgMatches<'a>`
2997 * `ArgMatches::values_of` returns an `Values` now which implements `Iterator` (should not break any…
3957 * **ArgMatches** add method to get default usage string ([02462150](https://github.com/clap-rs/cla…