Skip to content

Latest commit

 

History

History
33 lines (23 loc) · 831 Bytes

README.md

File metadata and controls

33 lines (23 loc) · 831 Bytes

superhash

Build Status Coverage Status Code Climate

superhash

Thread safe Hash Map that supports using one or more keys of any type

Installation

$ go get esco/superhash-go

Example

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) 

LICENSE

MIT