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

Function copy

include/cpp/VirtualArray.h:479–486  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

477 return new VirtualArray_obj( base->__concat(inTail), store==hx::arrayFixed );
478 }
479 VirtualArray copy( )
480 {
481 checkBase();
482 if (store==hx::arrayEmpty)
483 return new VirtualArray_obj(hx::arrayEmpty);
484
485 return new VirtualArray_obj(base->__copy(), store==hx::arrayFixed);
486 }
487 VirtualArray slice(int inPos, Dynamic end = null())
488 {
489 checkBase();

Callers 2

Array.hFile · 0.85
concatFunction · 0.85

Calls 1

checkBaseFunction · 0.85

Tested by

no test coverage detected