Skip to content

Latest commit

 

History

History
20 lines (15 loc) · 273 Bytes

README.md

File metadata and controls

20 lines (15 loc) · 273 Bytes

go-set

A simple set implementation for use in Go.

Usage

import (
	...
	set "github.com/AlexVulaj/go-set"
	...
)

...
// Create a new empty Set of type int
set.NewSet[int]()

// Create a new non-empty Set of type string
set.NewSet[string]("hello", "world")