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

Function AddBoolString

external/as_add_on/scriptstdstring/scriptstdstring.cpp:307–312  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

305}
306
307static string AddBoolString(bool b, const string &str)
308{
309 ostringstream stream;
310 stream << (b ? "true" : "false");
311 return stream.str() + str;
312}
313
314static char *StringCharAt(unsigned int i, string &str)
315{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected