HRFunc

Specifies the type of the function passed to glib.hash_table.HashTable.foreachRemove. It is called with each key/value pair, together with the user_data parameter passed to glib.hash_table.HashTable.foreachRemove. It should return true if the key/value pair should be removed from the #GHashTable.

alias HRFunc = bool delegate
(
void* key
,
void* value
)

Return Value

true if the key/value pair should be removed from the #GHashTable