FastIterator.hx 145 B

12345678
  1. package cpp;
  2. extern class FastIterator<T> implements haxe.rtti.Generic
  3. {
  4. public function hasNext():Bool;
  5. public function next():T;
  6. }