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

Function ScriptArrayInsertLast_Generic

sdk/add_on/scriptarray/scriptarray.cpp:2109–2114  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2107}
2108
2109static void ScriptArrayInsertLast_Generic(asIScriptGeneric *gen)
2110{
2111 void *value = gen->GetArgAddress(0);
2112 CScriptArray *self = (CScriptArray*)gen->GetObject();
2113 self->InsertLast(value);
2114}
2115
2116static void ScriptArrayRemoveLast_Generic(asIScriptGeneric *gen)
2117{

Callers

nothing calls this directly

Calls 3

GetArgAddressMethod · 0.80
GetObjectMethod · 0.80
InsertLastMethod · 0.80

Tested by

no test coverage detected