Operation StringVector
<<const>> splitAndPruneValues (bool& emptyValuesEncountered, char delimiter = ':'), in Class string_list_parser
Documentation
Same as splitValues, but discard empty values (i.e. two subsequent
colons, or a leading or trailing colon), and return an indication
of whether empty values were encountered.
Example: for the input string ":Abc:Def" and delimiter
':', a two element vector is returned:
[0] "Abc"
[1] "Def"
and the emptyValuesEncountered arg is returned as true (because of
the leading colon.)
Protocol | | Qualification | |
Exceptions | | Size | |
Time | | Concurrency | Sequential |
Export Control | PublicAccess | | |
Preconditions
Postconditions
Semantics