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;
}

Destructor

A destructor is present on this object, but not explicitly documented in the source.

Members

Functions

opIndex
VT opIndex(KT key)

Lookup by key

opIndexAssign
void opIndexAssign(VT val, KT key)

Assign by key

remove
void remove(KT key)

remove key/value pair

Meta