HashTable.lookup

Looks up a key in a #GHashTable. Note that this function cannot distinguish between a key that is not present and one which is present and has the value %NULL. If you need this distinction, use g_hash_table_lookup_extended().

class HashTable
void*
lookup
(
void* key
)

Parameters

key void*

the key to look up

Return Value

Type: void*

the associated value, or %NULL if the key is not found

Meta