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

Function ScriptArrayRemoveRange_Generic

sdk/add_on/scriptarray/scriptarray.cpp:2101–2107  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2099}
2100
2101static void ScriptArrayRemoveRange_Generic(asIScriptGeneric *gen)
2102{
2103 asUINT start = gen->GetArgDWord(0);
2104 asUINT count = gen->GetArgDWord(1);
2105 CScriptArray *self = (CScriptArray*)gen->GetObject();
2106 self->RemoveRange(start, count);
2107}
2108
2109static void ScriptArrayInsertLast_Generic(asIScriptGeneric *gen)
2110{

Callers

nothing calls this directly

Calls 3

GetArgDWordMethod · 0.80
GetObjectMethod · 0.80
RemoveRangeMethod · 0.80

Tested by

no test coverage detected