Contains standard libraries for ZenCode.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Iterator.zs 195B

1234567891011
  1. [Native("stdlib::Iterator")]
  2. public interface Iterator<T> {
  3. [Native("empty")]
  4. static empty<T>() as Iterator<T>;
  5. [Native("hasNext")]
  6. get hasNext as bool;
  7. [Native("next")]
  8. next() as T;
  9. }