i'd like to create an Iterator that gets its next element by (repeatedly) evaluating an expression, and i want the expression to be able to return a certain value to terminate the Iterator. the only thing i've found like this is Iterator.continually(), which seems to be infinite. it's important that the expression not be evaluated until next() is called on the Iterator. is there a way to get this behavior?
for example:
def getNext = {
// some complicated code
val next = ... // either a STOP value or a real value to be returned by the iterator
}
val myIter = Iterator.continually(getNext) // want this to stop at some point