Iterator


Object Hierarchy:

Gee.Iterator Gee.Iterator Gee.Iterator GLib.Object GLib.Object GLib.Object->Gee.Iterator Gee.Traversable Gee.Traversable Gee.Traversable->Gee.Iterator

Description:


public interface Iterator<G> : Object, Traversable<G>

An iterator over a collection.

Gee's iterators are "on-track" iterators. They always point to an item except before the first call to next, or, when an item has been removed, until the next call to next.

Please note that when the iterator is out of track, neither get nor remove are defined and both might fail. After the next call to next, they will be defined again.

Please also note that, unless specified otherwise, iterators before iteration started should behave as if after deletion of the first element. Whenever documentation states about the iterator 'out of track', 'invalid' or 'in-between elements' this refers to the same concept.

All known sub-interfaces:

Namespace: Gee
Package: gee-0.8

Content:

Properties:

Static methods:

Methods:

Inherited Members:

All known members inherited from interface Gee.Traversable