Skip to content

Latest commit

 

History

History
23 lines (16 loc) · 230 Bytes

README.md

File metadata and controls

23 lines (16 loc) · 230 Bytes

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)