Skip to content
/ set Public

Library of generic set data structure for Go.

License

Notifications You must be signed in to change notification settings

golang-ds/set

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

set

Library of generic set data structure for Go.

Install

$ go get github.com/golang-ds/set

Set Usage

Import

import "github.com/golang-ds/set"

Use

s := set.New[int]()
s.Add(1)