Elm
2
ELM is a library providing generic data structures, OS-independent interface, plugins and XML.
|
#include </home/casse/Dev/elm/src/concepts.h>
Public Member Functions | |
Iter (const Collection< T > &collection) | |
Public Member Functions inherited from Iter< T > | |
bool | ended (void) |
void | next (void) |
T | item (void) |
operator bool (void) | |
operator T (void) | |
Iter & | operator++ (int) |
Iter & | operator= (const Iter &iterator) |
bool | equals (const Iter &iterator) const |
bool | operator== (const Iter &iterator) const |
bool | operator!= (const Iter &iterator) const |
Iterator on the items of the collection. No assertion can be made about the order of traversal of the collection items.
Iter | ( | const Collection< T > & | collection | ) |
Build an iterator from a collection.
collection | Collection to traverse. |