hashtable enumerator enumerates over both, key and values

This commit is contained in:
Martin Willi
2008-12-05 10:01:52 +00:00
parent a6d7a6107c
commit 19e0010f51
3 changed files with 9 additions and 6 deletions
+2 -2
View File
@@ -52,9 +52,9 @@ typedef bool (*hashtable_equals_t)(void *key, void *other_key);
struct hashtable_t {
/**
* Create an enumerator over the hash table.
* Create an enumerator over the hash table key/value pairs.
*
* @return enumerator over hash table entries
* @return enumerator over (void *key, void *value)
*/
enumerator_t *(*create_enumerator) (hashtable_t *this);