Skip to content
/ goMap Public

A simple implementation of a hashset. Written using generics. Like python collections.Counter

Notifications You must be signed in to change notification settings

Acollie/goMap

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Go Map

A simple implementation of a hashset. Written using generics.

Usage

mapTest := new(lib.Set[string]).New()
mapTest.Add("foo bar")
mapTest.Add("bar")
mapTest.Remove("bar")
mapTest.In("bar")//False

Testing

$ cd lib
$ go test

About

A simple implementation of a hashset. Written using generics. Like python collections.Counter

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages