Thread safe Hash Map that supports using one or more keys of any type
$ go get esco/superhash-go
import (
"github.com/esco/superhash"
)
hashmap := superhash.New()
k1, k2, k3, value := 1, true, "3", 4
hashmap.Set(k1, k2, k3, value)
hashmap.Get(k1, k2, k3) // 4
hashmap.Delete(k1, k2, k3)