Destroy the hash by freeing the buckets table. Does not call destructors for the elements. */
| 42 | not call destructors for the elements. |
| 43 | */ |
| 44 | ~Hash_set() |
| 45 | { |
| 46 | my_hash_free(&m_hash); |
| 47 | } |
| 48 | /** |
| 49 | Insert a single value into a hash. Does not tell whether |
| 50 | the value was inserted -- if an identical value existed, |
nothing calls this directly
no test coverage detected