Packageraix.interactive
Interfacepublic interface IEnumerator

Contains the state of an active enumeration. This interface is rarely accessed by client code as IEnumerable sequences can be used with `for each`



Public Properties
 PropertyDefined By
  current : Object
[read-only] Returns the current value in the sequence
IEnumerator
Public Methods
 MethodDefined By
  
moveNext():Boolean
Moves to the next value in the sequence
IEnumerator
Property Detail
currentproperty
current:Object  [read-only]

Returns the current value in the sequence


Implementation
    public function get current():Object
Method Detail
moveNext()method
public function moveNext():Boolean

Moves to the next value in the sequence

Returns
Boolean — true if a new value is available; false if the end of the sequence has been reacheds