PureMVC Framework for haXe: API Documentation
Back | Index
class IntIter
Integer iterator. Used for interval implementation.
function new(min : Int, max : Int) : Void
Iterate from min (inclusive) to max (exclusive). If max <= min, the iterator will not act as a countdown.
function hasNext() : Bool
function next() : Int
Back | Index