Iterable.hx 91 B

123456
  1. package java.util;
  2. extern interface Iterable<T>
  3. {
  4. function iterator():Iterator<T>;
  5. }