MCPcopy Create free account
hub / github.com/HaxeFoundation/hxcpp / __length

Method __length

include/Array.h:1158–1158  ·  view source on GitHub ↗

inline ELEM_ __get(int inIdx) const { return CheckGetPtr()->__get(inIdx); }

Source from the content-addressed store, hash-verified

1156 inline ELEM_ operator[](int inIdx) const { return CheckGetPtr()->__get(inIdx); }
1157 //inline ELEM_ __get(int inIdx) const { return CheckGetPtr()->__get(inIdx); }
1158 inline int __length() const { return CheckGetPtr()->__length(); }
1159 inline Array<ELEM_> &Add(const ELEM_ &inElem) { CheckGetPtr()->Add(inElem); return *this; }
1160 inline Array<ELEM_> & operator<<(const ELEM_ &inElem) { CheckGetPtr()->Add(inElem); return *this; }
1161};

Callers 6

ArrayMethod · 0.45
setDynamicMethod · 0.45
concatMethod · 0.45
handlerMethod · 0.45
concatFunction · 0.45
memcmpFunction · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected