← index

StopIteration

inherits Error · defined at core/00-bootstrap.qn:235

Raised by an exhausted iterator's next (see core/02-iterate.qn).

var it = #(1).iterator;
it.next;                                           "* -> 1
{ it.next }.catch:{ |e:StopIteration| 'done' }    "* -> done