docs/Writerside/topics/hash_map.h.md

Fri, 24 Jan 2025 21:38:40 +0100

author
Mike Becker <universe@uap-core.de>
date
Fri, 24 Jan 2025 21:38:40 +0100
branch
docs/3.1
changeset 1144
b23d07fff6ca
parent 1143
0559812df10c
child 1146
151c057faf7c
permissions
-rw-r--r--

documentation of hash_key.h

relates to #451

# Hash Map

UCX provides a basic hash map implementation with a configurable amount of buckets.
If you do not specify the number of buckets, a default of 16 buckets will be used.
You can always rehash the map with `cxMapRehash()` to change the number of buckets to something more efficient,
but you need to be careful, because when you use this function you are effectively locking into using this
specific hash map implementation, and you would need to remove all calls to this function when you want to
exchange the concrete map implementation with something different.

## Undocumented Symbols (TODO)
### cxHashMapCreate
### cxMapRehash

mercurial