Lines Matching refs:ArgMatches
126 - `ArgMatches::get_occurrences` support for argument values to be grouped by their occurrence
250 - Only put `ArgGroup` in `ArgMatches` when explicitly specified, fixing derives handling of option-…
425 Additionally, to avoid `ArgMatches` from borrowing (and for some features we
433 As an extension of that work, you can now call `ArgMatches::ids` to iterate
510 - `ArgAction::SetTrue`, requiring `ArgMatches::get_flag` instead of `ArgMatches::is_present`
511 - `ArgAction::Count`, requiring `ArgMatches::get_count` instead of `ArgMatches::occurrences_of`
512 - `ArgAction::Set`, requiring `ArgMatches::get_one` instead of `ArgMatches::value_of`
513 - `ArgAction::Append`, requiring `ArgMatches::get_many` instead of `ArgMatches::values_of`
542 - Looking up a group in `ArgMatches` now returns the arg `Id`s, rather than the values to reduce ov…
768 - When misusing `ArgMatches::value_of` and friends, debug asserts were turned into panics
786 - `ArgMatches::{value_of, value_of_os, value_of_os_lossy, value_of_t}` with `ArgMatches::{get_one,r…
787 - `ArgMatches::{values_of, values_of_os, values_of_os_lossy, values_of_t}` with `ArgMatches::{get_m…
788 - `ArgMatches::is_valid_arg` with `ArgMatches::{try_get_one,try_get_many}` (#3753)
789 - `ArgMatches::occurrences_of` with `ArgMatches::value_source` or `ArgAction::Count` (#3797)
790 - `ArgMatches::is_present` with `ArgMatches::contains_id` or `ArgAction::SetTrue` (#3797)
810 - Parsed, typed arguments via `Arg::value_parser` / `ArgMatches::{get_one,get_many}` (#2683, #3732)
814 - All `ArgMatches` getters do not assume required arguments (#2505)
815 - Add `ArgMatches::remove_*` variants to transfer ownership
816 - Add `ArgMatches::try_*` variants to avoid panics for developer errors (#3621)
839 - `ArgMatches::{try_,}contains_id` for checking if there are values for an argument that mirrors th…
846 - Set `ArgMatches::value_source` and `ArgMatches::occurrences_of` for external subcommands (#3732)
994 - Track caller for `ArgMatches` assertions so the user more easily sees where they need to fix the …
1026 - *(matches)* Add `clap::ArgMatches::value_source` to determine what insert the value (#1345)
1064 - Added `ArgMatches::args_present()` to check if any args are present
1142 - Clean up quotes in `ArgMatches` asserts
1149 - For very limited cases, like `cargo`, expose `ArgMatches::is_valid_arg` to avoid panicing on unde…
1227 …3. *If using builder:* test your application under various circumstances to see if `ArgMatches` as…
1283 …3. *If using builder:* test your application under various circumstances to see if `ArgMatches` as…
1303 - `ArgMatches::is_present` no longer checks subcommand names
1319 `ArgSettings::AllowInvalidUtf8` and `ArgMatches::value_of_os` aren't used
1324 - `ArgMatches` panics on unknown arguments
1336 - Replaced `ArgMatches::usage` with `App::generate_usage`
1349 - Changed `ArgMatches::subcommand` to now return `Option<(&str, &ArgMatches)>`
1388 - Validate UTF-8 values, rather than panicing during `ArgMatches::value_of` thanks to `AppSettings:…
1389 - Debug builds will assert when the `ArgMatches` calls do not match the UTF-8 setting.
1423 - See `ArgMatches::grouped_values_of` behind `unstable-grouped` feature flag
1448 - `ArgMatches` panics on unknown arguments
3024 * `ArgMatches<'a, 'b>` => `ArgMatches<'a>`
3056 * `ArgMatches::values_of` returns an `Values` now which implements `Iterator` (should not break any…
4016 * **ArgMatches** add method to get default usage string ([02462150](https://github.com/clap-rs/cla…