Lines Matching full:be
25 Instead of `PandArg`, `PandArgCompound` can be used, which serves for creation of the compound argu…
30 To create an argument, it's template constructor should be called. Here is an instance:
48 - Argument description will be used to form a help message.
50 - Min value is the number that the integer argument cannot be less than
51 - Max value is the number that the integer argument cannot be greater than
53 Sub-arguments should not be added to the parser via `PandArgParser::Add`.
55 Template parameter is an argument type. Following values could be passed:
82 Tail arguments are positional arguments, which should be introduced with help of parser API
87 and can be any type of argument. Compound arguments implicitly have default value `false` and user …
89 To access compound arguments from `C++`, regular convention should be used, for accessing sub-argum…
91 …p:compact`, here, to access `compact` sub-arguments `[Is|Get]CompilerDumpCompact()` should be used.
97 …- parse arguments. Returns `true` on success. Note: `argv` & `argc` should be passed as is, withou…
114 …s the last added argument. Tail arguments may be added to a parser when tail is disabled, but they…
132 - Argument and it's value may be separated either by whitespace (` `) or by equals (`=`) sign
134 - Positional arguments should be without names or `=` signs, separated by whitespaces
135 - Boolean argument may be used without a value. This arguments always considered as `true`
140 - list values must be repeated with arg name or separated by delimiter
161 …-1` is integer value and `str1` and `str2` is a string value. List may not be a tail argument. Pos…
162 In the remainder arguments example, all literals coming after `--` will go to remainder and can be …
168 // now pab will be processed as a positional argument