struct HybridHashMap(K, V = void, alias hasher = hashOf, string keyEqualPred = defaultKeyEqualPredOf!(K), Allocator = Mallocator, Options options = Options.init)
static if(!((is(K == class)) && keyEqualPred == `a is b`))
static if(isPointer!K && (keyEqualPred == `a == b` || keyEqualPred == `a is b`))
alias StoreK =
void*