Lines Matching full:string
11 - string
41 - Delimiter is a character or string that separates the different value if the single argument list.
49 - `std::string` for string argument
53 …red in `pandargs.h` under `panda` namespace, which is an alias for `std::vector<std::string>` type.
57 - `std::string GetName()` - return name of an argument
58 - `std::string GetDesc()` - return description of an argument
72 …ments are arguments that come after trailing `--`. All of them are plain std::vector of std::string
79 - `std::string GetErrorString()` - return error string if error occurred on argument addition or pa…
84 - `bool IsArgSet(const std::string& arg_name)` - return `true` if an argument with given name was a…
92 - `std::string GetHelpString()` - return string with all arguments and their description
93 - `std::string GetRegularArgs()` - return string with all regular arguments and their values
122 - String and list arguments may accept no parameters.
130 $ ./app --string="a string" # string is "a string"
131 $ ./app --string "a string" # string is "a string"
132 $ ./app --string string # string is "string"
133 $ ./app --string= --int=1 # string is an empty string, int is 1
140 …string value. List may not be a tail argument. Positional values are verified the same way as regu…