Skip to content

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

License

Notifications You must be signed in to change notification settings

esco/superhash-go

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 

Repository files navigation

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

About

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

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages