/**
 * Destroy hash_multimap.
 */
void hash_multimap_destroy(hash_multimap_t* phmmap_map)
{
    _hash_multimap_destroy_auxiliary(phmmap_map);
    free(phmmap_map);
}
void _type_destroy_hash_multimap(const void* cpv_input, void* pv_output)
{
    assert(cpv_input != NULL && pv_output != NULL);
    _hash_multimap_destroy_auxiliary((hash_multimap_t*)cpv_input);
    *(bool_t*)pv_output = true;
}