StringIter - mfichman/jogo GitHub Wiki

This iterator returns each of the characters in the string it points to in sequence.

@init(str String)

Initializes the iterator; the iterator will iterate over the characters in 'str'.

more?() Bool

Returns true if there are more elements in the array.

next() Char

Returns the next character in the string.

iter() StringIter

@destroy()

No comment