MCPcopy Create free account
hub / github.com/CLIUtils/CLI11 / string get_group_separators

Method string get_group_separators

include/CLI/impl/StringTools_inl.hpp:126–133  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

124}
125
126CLI11_INLINE std::string get_group_separators() {
127 std::string separators{"_'"};
128#if CLI11_HAS_RTTI != 0
129 char group_separator = std::use_facet<std::numpunct<char>>(std::locale()).thousands_sep();
130 separators.push_back(group_separator);
131#endif
132 return separators;
133}
134
135CLI11_INLINE std::string find_and_replace(std::string str, std::string from, std::string to) {
136

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected