HashTableIter


Object Hierarchy:

GLib.HashTableIter GLib.HashTableIter GLib.HashTableIter

Description:

[ Version ( since = "2.16" ) ]
[ CCode ( has_type_id = false ) ]
public struct HashTableIter<K,V>

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


Namespace: GLib
Package: glib-2.0

Content:

Creation methods:

Methods: