SetIterator

abstract class SetIterator : Iterator<AvailObject>

A SetIterator is returned when a set is asked for its AvailObject.iterator. Among other uses, this is useful when combined with Kotlin's "forEach" control structure.

Constructors

Link copied to clipboard
fun SetIterator()

Functions

Link copied to clipboard
open fun forEachRemaining(p0: Consumer<in AvailObject>)
Link copied to clipboard
abstract operator fun hasNext(): Boolean
Link copied to clipboard
abstract operator fun next(): AvailObject