Lines Matching refs:that
6 This directory contains the classes that do common command line tool initialization and parsing. The
16 generate a type-safe value parser that process a user-provided list of strings (`argv`). Currently,
32 // Note that some template boilerplate has been avoided for clarity.
81 type of value (such as an int or double as in the above `FruitVariantMap` example). To do that, a
82 _wildcard_ must be used to denote the location within the token that the type will be parsed out of.
93 Everything that follows a `WithType<T>()` call is thus type checked to only take `T` values.
96 argument that only cares about presence).
132 (Note that this method will not work when the argument definitions have a wildcard because there is
133 no way to position-ally match that).
154 Currently, only `IntoKey` is supported, but that may change in the future.
157 This specifies that when a value is parsed, it will get saved into a variant map using the specific
166 where `ParsedValue` is an imaginary function that parses the `-help` argment into a specific type
171 an option to ignore any argument tokens that are not known to the parser. This is done with the
174 It's semantically equivalent to making a series of argument definitions that map to `Unit` but don't