FastIterator.hx 116 B

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