| 76 | HX_IS_INSTANCE_OF enum { _hx_ClassId = hx::clsIdArrayIterator }; |
| 77 | |
| 78 | ArrayIterator(Array<FROM> inArray) : mArray(inArray), mIdx(0) { } |
| 79 | |
| 80 | // Fast versions ... |
| 81 | bool hasNext() HXCPP_OVERRIDE { return mIdx < mArray->length; } |
nothing calls this directly
no outgoing calls
no test coverage detected