MCPcopy Create free account
hub / github.com/anjo76/angelscript / StringErase

Function StringErase

sdk/add_on/scriptstdstring/scriptstdstring.cpp:492–496  ·  view source on GitHub ↗

AngelScript signature: void string::erase(uint pos, int count = -1)

Source from the content-addressed store, hash-verified

490// AngelScript signature:
491// void string::erase(uint pos, int count = -1)
492static void StringErase(unsigned int pos, int count, string &str)
493{
494 // We don't register the method directly because the argument types change between 32bit and 64bit platforms
495 str.erase(pos, (size_t)(count < 0 ? string::npos : count));
496}
497
498
499// AngelScript signature:

Callers 1

StringErase_GenericFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected