package java.util; extern interface Iterator { function hasNext():Bool; function next():T; function remove():Void; }