MCPcopy Create free account
hub / github.com/CytopiaTeam/Cytopia / AddStringBool

Function AddStringBool

external/as_add_on/scriptstdstring/scriptstdstring.cpp:300–305  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

298}
299
300static string AddStringBool(const string &str, bool b)
301{
302 ostringstream stream;
303 stream << (b ? "true" : "false");
304 return str + stream.str();
305}
306
307static string AddBoolString(bool b, const string &str)
308{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected