MCPcopy Create free account
hub / github.com/DeusData/codebase-memory-mcp / CBMHashTable

Class CBMHashTable

src/foundation/hash_table.c:40–42  ·  view source on GitHub ↗

The opaque CBMHashTable struct holds the Verstable instance + a * count cache (Verstable's _size traversal is O(buckets) so we keep * our own atomic-free counter). */

Source from the content-addressed store, hash-verified

38 * count cache (Verstable's _size traversal is O(buckets) so we keep
39 * our own atomic-free counter). */
40struct CBMHashTable {
41 cbm_vt vt;
42};
43
44CBMHashTable *cbm_ht_create(uint32_t initial_capacity) {
45 CBMHashTable *ht = (CBMHashTable *)calloc(CBM_ALLOC_ONE, sizeof(*ht));

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected