MCPcopy Create free account
hub / github.com/chipsalliance/Surelog / StrAppend

Function StrAppend

include/Surelog/Utils/StringUtils.h:53–58  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

51// string.
52template <typename... Ts>
53void StrAppend(std::string* dest, Ts&&... args) {
54 std::ostringstream out;
55 out << *dest;
56 (out << ... << std::forward<Ts>(args));
57 *dest = out.str();
58}
59
60namespace StringUtils {
61// Tokenize "str" at "any_of_separator", store in "result" array.

Callers 15

TESTFunction · 0.85
recurseInstanceLoop_Method · 0.85
elaborateInstance_Method · 0.85
compileRangesMethod · 0.85
reportHtmlMethod · 0.85
elab_ports_nets_Method · 0.85
printObjectsMethod · 0.85
reportInstanceTreeMethod · 0.85
printMethod · 0.85
parseOneFile_Method · 0.85

Calls

no outgoing calls

Tested by 1

TESTFunction · 0.68