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

Function StringInsert

external/as_add_on/scriptstdstring/scriptstdstring.cpp:411–415  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

409// AngelScript signature:
410// void string::insert(uint pos, const string &in other)
411static void StringInsert(unsigned int pos, const string &other, string &str)
412{
413 // We don't register the method directly because the argument types change between 32bit and 64bit platforms
414 str.insert(pos, other);
415}
416
417// AngelScript signature:
418// void string::erase(uint pos, int count = -1)

Callers 1

StringInsert_GenericFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected