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

Function contains

include/cpp/VirtualArray.h:432–439  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

430 inline Dynamic pop() { checkBase(); return store==hx::arrayEmpty ? null() : base->__pop(); }
431
432 inline bool contains(Dynamic inValue)
433 {
434 checkBase();
435 if (store==hx::arrayEmpty)
436 return false;
437 EnsureStorage(inValue);
438 return base->__contains(inValue);
439 }
440
441 inline bool remove(Dynamic inValue)
442 {

Callers

nothing calls this directly

Calls 2

checkBaseFunction · 0.85
EnsureStorageFunction · 0.85

Tested by

no test coverage detected