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

Function remove

include/cpp/VirtualArray.h:441–448  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

439 }
440
441 inline bool remove(Dynamic inValue)
442 {
443 checkBase();
444 if (store==hx::arrayEmpty)
445 return false;
446 EnsureStorage(inValue);
447 return base->__remove(inValue);
448 }
449
450 inline bool removeAt(int inIndex) { checkBase(); return (store!=hx::arrayEmpty) && base->__removeAt(inIndex); }
451

Callers

nothing calls this directly

Calls 2

checkBaseFunction · 0.85
EnsureStorageFunction · 0.85

Tested by

no test coverage detected