| 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(); |