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

Function StrCat

include/Surelog/Utils/StringUtils.h:44–48  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

42// a string which is returned.
43template <typename... Ts>
44std::string StrCat(Ts&&... args) {
45 std::ostringstream out;
46 (out << ... << std::forward<Ts>(args));
47 return out.str();
48}
49
50// Similar to StrCat(), append arguments, converted to strings to "dest"
51// string.

Callers 15

BuildIdentifierFunction · 0.85
parseCommandLineMethod · 0.85
TESTFunction · 0.85
evalExprMethod · 0.85
checkCacheIsValidMethod · 0.85
cacheDefinesMethod · 0.85
restoreDesignElementsMethod · 0.85
getUniqueTempFileNameFunction · 0.85
TESTFunction · 0.85
InMemoryFileSystemClass · 0.85
collectObjects_Method · 0.85

Calls

no outgoing calls

Tested by 6

TESTFunction · 0.68
getUniqueTempFileNameFunction · 0.68
TESTFunction · 0.68
checkValidBuiltinClass_Function · 0.68
bindSubRoutineCall_Method · 0.68