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

Function StringInsert

sdk/add_on/scriptstdstring/scriptstdstring.cpp:484–488  ·  view source on GitHub ↗

AngelScript signature: void string::insert(uint pos, const string &in other)

Source from the content-addressed store, hash-verified

482// AngelScript signature:
483// void string::insert(uint pos, const string &in other)
484static void StringInsert(unsigned int pos, const string &other, string &str)
485{
486 // We don't register the method directly because the argument types change between 32bit and 64bit platforms
487 str.insert(pos, other);
488}
489
490// AngelScript signature:
491// void string::erase(uint pos, int count = -1)

Callers 1

StringInsert_GenericFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected