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

Function ScriptArrayRemoveAt_Generic

sdk/add_on/scriptarray/scriptarray.cpp:2094–2099  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2092}
2093
2094static void ScriptArrayRemoveAt_Generic(asIScriptGeneric *gen)
2095{
2096 asUINT index = gen->GetArgDWord(0);
2097 CScriptArray *self = (CScriptArray*)gen->GetObject();
2098 self->RemoveAt(index);
2099}
2100
2101static void ScriptArrayRemoveRange_Generic(asIScriptGeneric *gen)
2102{

Callers

nothing calls this directly

Calls 3

GetArgDWordMethod · 0.80
GetObjectMethod · 0.80
RemoveAtMethod · 0.80

Tested by

no test coverage detected