|
libcmutils 0.6.5
Multi-platform C99 utility library
|
Iterator of collection members. More...
Data Fields | |
| CMBool(* | HasNext )(const CMUTIL_Iterator *iter) |
| Check iterator has the next element. | |
| void *(* | Next )(CMUTIL_Iterator *iter) |
| Get the next element from this iterator. | |
| void(* | Destroy )(CMUTIL_Iterator *iter) |
| Destroy this iterator. | |
Iterator of collection members.
| CMBool(* CMUTIL_Iterator::HasNext) (const CMUTIL_Iterator *iter) |
Check iterator has the next element.
| iter | This iterator object. |
| void *(* CMUTIL_Iterator::Next) (CMUTIL_Iterator *iter) |
Get the next element from this iterator.
| iter | This iterator object. |
| void(* CMUTIL_Iterator::Destroy) (CMUTIL_Iterator *iter) |
Destroy this iterator.
This method must be called after using this iterator.
| iter | This iterator object. |