khash.kh_t
template khash(KT, VT, bool kh_is_map = true)
struct kh_t {
khint_t n_buckets;
khint_t size;
khint_t n_occupied;
khint_t upper_bound;
khint32_t* flags;
KT* keys;
VT* vals;
}
A destructor is present on this object, but not explicitly documented in the source.
- opIndex
VT opIndex(KT key)
- opIndexAssign
void opIndexAssign(VT val, KT key)
- remove
void remove(KT key)