Documentation

objects()

Returns an iterable iterator for this list.

objects(): IterableIterator<T>;

Notes

Note
The behavior of the iterator is undefined if the object after the current object is removed, moved, or if another object is inserted before it. Removing the current object or any previous objects during iteration is safe.

Related