IteratorAggregate.hx 274 B

12345678910
  1. package php;
  2. extern interface IteratorAggregate<T> {
  3. /**
  4. This method is not public to not induce haXe users to use it ;)
  5. Use iterator() instead.
  6. The return type would be Aggregator that is unusable in haXe
  7. **/
  8. private function getIterator() : Iterator<T>; //
  9. }