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

Function StringErase_Generic

sdk/add_on/scriptstdstring/scriptstdstring.cpp:1180–1186  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1178}
1179
1180static void StringErase_Generic(asIScriptGeneric *gen)
1181{
1182 string * self = static_cast<string *>(gen->GetObject());
1183 asUINT pos = gen->GetArgDWord(0);
1184 int count = int(gen->GetArgDWord(1));
1185 StringErase(pos, count, *self);
1186}
1187
1188static void StringFindFirst_Generic(asIScriptGeneric * gen)
1189{

Callers

nothing calls this directly

Calls 3

StringEraseFunction · 0.85
GetObjectMethod · 0.80
GetArgDWordMethod · 0.80

Tested by

no test coverage detected