HaxeIterable.hx 258 B

1234567891011121314
  1. package python;
  2. import python.lib.Types;
  3. class HaxeIterable<T> {
  4. var x :NativeIterable<T>;
  5. public inline function new (x:NativeIterable<T>) {
  6. this.x = x;
  7. }
  8. public inline function iterator ():HaxeIterator<T> return new HaxeIterator(x.__iter__());
  9. }