Skip to content

Implements a new thread-safety type in Golang - Set. It offers a wide range of set operations (union, intersection, difference, and others). The type is based on map[T]struct{}.

License

Notifications You must be signed in to change notification settings

MothScientist/go-set

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

go-set

Implements a new thread-safety type in Golang - Set. It offers a wide range of set operations (union, intersection, difference, and others). The type is based on map[T]struct{}.

Set is a collection of unique elements of a comparable type. This data type does not preserve the order of its elements.

gopher

package main

import (
    "fmt"
    set "github.com/MothScientist/go-set"
)

func main() {

}

About

Implements a new thread-safety type in Golang - Set. It offers a wide range of set operations (union, intersection, difference, and others). The type is based on map[T]struct{}.

Resources

License

Stars

Watchers

Forks