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

Method filter

src/Array.cpp:1315–1325  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1313}
1314
1315VirtualArray VirtualArray_obj::filter(ArrayBase::DynamicFilterFunc inFunc)
1316{
1317 if ( !base )
1318 return new VirtualArray_obj();
1319
1320 Dynamic filtered = base->__filter(inFunc);
1321
1322 VirtualArray result = new VirtualArray_obj( dynamic_cast<cpp::ArrayBase_obj *>(filtered.mPtr), false);
1323 result->store = store;
1324 return result;
1325}
1326
1327class EmptyIterator : public IteratorBase
1328{

Callers 3

runProcessMethod · 0.45
runObjectMethod · 0.45
runProcessMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected