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

Method GetFuncdefByIndex

sdk/angelscript/source/as_scriptengine.cpp:6090–6096  ·  view source on GitHub ↗

interface

Source from the content-addressed store, hash-verified

6088
6089// interface
6090asITypeInfo *asCScriptEngine::GetFuncdefByIndex(asUINT index) const
6091{
6092 if( index >= registeredFuncDefs.GetLength() )
6093 return 0;
6094
6095 return registeredFuncDefs[index];
6096}
6097
6098// internal
6099asCFuncdefType *asCScriptEngine::FindMatchingFuncdef(asCScriptFunction *func, asCModule *module)

Callers 2

WriteConfigToStreamFunction · 0.80
DumpModuleFunction · 0.80

Calls 1

GetLengthMethod · 0.45

Tested by 1

DumpModuleFunction · 0.64