Interface

RmfIterator

since: 0

Description [src]

interface Rmf.Iterator : GObject.Object

A generic iterator interface.

Available since: 0

Prerequisite

In order to implement Iterator, your type must inherit fromGObject.

Instance methods

rmf_iterator_next

Advance the iterator by one, returning the next object.

since: 0

Interface structure

struct RmfIteratorInterface {
  GTypeInterface parent;
  void* (* next) (
    RmfIterator* iterator
  );
  
}
No description available.
Interface members
parent
GTypeInterface
 No description available.
next
void* (* next) (
    RmfIterator* iterator
  )
 No description available.

Virtual methods

Rmf.Iterator.next

Advance the iterator by one, returning the next object.

since: 0