Example: HashTable, iter

public static int main (string[] args) {
HashTable<int, string> table = new HashTable<int, string> (direct_hash, direct_equal);
table.insert (1, "first string");
table.insert (2, "second string");
table.insert (3, "third string");

HashTableIter<int, string> iter = HashTableIter<int, string> (table);
unowned string val;
int key;

// Output:
// ``1 => first string``
// ``2 => second string``
// ``3 => third string``
while (iter.next (out key, out val)) {
print ("%d => %s\n", key, val);
}

return 0;
}

 valac --pkg glib-2.0 GLib.HashTableIter.vala

See: