Functions | |
EAPI Ecore_Hash * | ecore_hash_new (Ecore_Hash_Cb hash_func, Ecore_Compare_Cb compare) |
Creates and initializes a new hash. | |
EAPI int | ecore_hash_init (Ecore_Hash *hash, Ecore_Hash_Cb hash_func, Ecore_Compare_Cb compare) |
Initializes the given hash. |
EAPI int ecore_hash_init | ( | Ecore_Hash * | hash, | |
Ecore_Hash_Cb | hash_func, | |||
Ecore_Compare_Cb | compare | |||
) |
Initializes the given hash.
hash | The given hash. | |
hash_func | The function used for hashing node keys. | |
compare | The function used for comparing node keys. |
TRUE
on success, FALSE
on an error. EAPI Ecore_Hash* ecore_hash_new | ( | Ecore_Hash_Cb | hash_func, | |
Ecore_Compare_Cb | compare | |||
) |
Creates and initializes a new hash.
hash_func | The function for determining hash position. | |
compare | The function for comparing node keys. |
NULL
on error, a new hash on success.