Categorygithub.com/awesome-cap/hashmap
repositorypackage
0.0.0-20220308123617-f10e2b637d7d
Repository: https://github.com/awesome-cap/hashmap.git
Documentation: pkg.go.dev

# README

Introduce

Atomic HashMap.

Install

go get -u github.com/awesome-cap/hashmap

Usage

import "github.com/awesome-cap/hashmap"

m := hashmap.New()
m.Set("hello", "world")
v, ok := m.Get("hello") // v: "world", ok: true
suc := m.Del("hello")   // suc: true

Benchmarks

Benchmark