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

Function memcmp

include/cpp/VirtualArray.h:546–552  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

544 void zero(Dynamic inFirst, Dynamic inCount) { checkBase(); if (store!=hx::arrayEmpty) base->zero(inFirst,inCount); }
545
546 inline int memcmp(VirtualArray inOther)
547 {
548 checkBase();
549 if (store==hx::arrayEmpty)
550 return inOther->__length() == 0;
551 return base->__memcmp(inOther);
552 }
553 inline void blit(int inDestElement, cpp::VirtualArray inSourceArray, int inSourceElement, int inElementCount)
554 {
555 inSourceArray->checkBase();

Callers 1

compareMethod · 0.50

Calls 2

checkBaseFunction · 0.85
__lengthMethod · 0.45

Tested by

no test coverage detected