A simple golang hashmap library
You can commit PR to this repository
go get -u github.com/gobkc/hashmap
package main
import (
"github.com/gobkc/hashmap"
"fmt"
)
func main() {
hs := hashmap.NewHash()
hs.Set("Alple", "123456")
fmt.Println(hs.Get("Alple"))
}
result:
123456
© Gobkc, 2023~time.Now
Released under the Apache License