Searched defs:KeyArg (Results 1 – 1 of 1) sorted by relevance
47 struct KeyArg { struct48 explicit KeyArg(std::string_view arg) : rawArg(arg) {} in KeyArg() function49 const std::string_view rawArg; /* full option, like "--key=value" */50 std::string_view key; /* Extracted key, like "--key" */51 std::string_view val; /* Extracted value, like "value" */52 bool isEqualOpt = false; /* indicates whether the parsed option contained "=" symbol.55 …edOpt = false; /* indicates whether the parsed option was a joined option, like: --optValue */