Go to file
lWolvesl 002ce3fefd routine 2023-02-26 18:11:35 +08:00
.github/workflows Default to latest patch version in CI, bump actions 2022-07-27 09:44:40 -07:00
.gitignore Initial commit 2013-07-03 14:52:01 -07:00
LICENSE Adding Powerset 2022-03-26 20:29:05 -07:00
README.md routine 2023-02-26 18:11:35 +08:00
bench_test.go test: fix benchmark 2022-03-28 17:27:30 -07:00
go.mod routine 2023-02-26 18:11:35 +08:00
iterator.go Removing all temp *Generic based names by swapping with the original names to minimize changes 2022-03-26 20:29:05 -07:00
iterator_example_test.go Delete `New*SetFromSlice()` and `NewSetWith()` APIs 2022-03-27 21:37:21 -07:00
new_improved.jpeg Updating final info 2022-03-26 20:29:05 -07:00
set.go Delete `New*SetFromSlice()` and `NewSetWith()` APIs 2022-03-27 21:37:21 -07:00
set_test.go Delete `New*SetFromSlice()` and `NewSetWith()` APIs 2022-03-27 21:37:21 -07:00
threadsafe.go Fixes to build with Go 1.18 official release thanks to @billinghamj input - Thank You 2022-03-26 20:29:05 -07:00
threadsafe_test.go add wg.Wait() at the end of Test_CloneConcurrent 2022-05-30 08:33:00 -07:00
threadunsafe.go improved efficiency 2022-07-27 09:52:15 -07:00

README.md

  • 此仓库克隆于 https://github.com/deckarep/golang-set ,此处仅用作加速下载
  • 引用 gitea.wolves.top/golang/set

example workflow Go Report Card GoDoc

golang-set

The missing generic set collection for the Go language. Until Go has sets built-in...use this.

Update 3/26/2022

  • Packaged version: 2.0.0 release for generics support with breaking changes.
  • supports new generic syntax
  • Go 1.18.0 or higher

With Generics

Coming from Python one of the things I miss is the superbly wonderful set collection. This is my attempt to mimic the primary features of the set collection from Python. You can of course argue that there is no need for a set in Go, otherwise the creators would have added one to the standard library. To those I say simply ignore this repository and carry-on and to the rest that find this useful please contribute in helping me make it better by contributing with suggestions or PRs.

Features

  • NEW Generics based implementation (requires Go 1.18 or higher)
  • One common interface to both implementations
    • a non threadsafe implementation favoring performance
    • a threadsafe implementation favoring concurrent use
  • Feature complete set implementation modeled after Python's set implementation.
  • Exhaustive unit-test and benchmark suite

Trusted by

This package is trusted by many companies and thousands of open-source packages. Here are just a few sample users of this package.

  • Notable projects/companies using this package
    • Ethereum
    • Docker
    • 1Password
    • Hashicorp

Star History

Star History Chart

Usage

The code below demonstrates how a Set collection can better manage data and actually minimize boilerplate and needless loops in code. This package now fully supports generic syntax so you are now able to instantiate a collection for any comparable type object.

What is considered comparable in Go?

  • Booleans, integers, strings, floats or basically primitive types.
  • Pointers
  • Arrays
  • Structs if all of their fields are also comparable independently

Using this library is as simple as creating either a threadsafe or non-threadsafe set and providing a comparable type for instantiation of the collection.

// Syntax example, doesn't compile.
mySet := mapset.NewSet[T]() // where T is some concrete comparable type.

// Therefore this code creates an int set
mySet := mapset.NewSet[int]()

// Or perhaps you want a string set
mySet := mapset.NewSet[string]()

type myStruct {
  name string
  age uint8
}

// Alternatively a set of structs
mySet := mapset.NewSet[myStruct]()

// Lastly a set that can hold anything using the any or empty interface keyword: interface{}. This is effectively removes type safety.
mySet := mapset.NewSet[any]()

Comprehensive Example

package main

import (
  "fmt"
  mapset "github.com/deckarep/golang-set/v2"
)

func main() {
  // Create a string-based set of required classes.
  required := mapset.NewSet[string]()
  required.Add("cooking")
  required.Add("english")
  required.Add("math")
  required.Add("biology")

  // Create a string-based set of science classes.
  sciences := mapset.NewSet[string]()
  sciences.Add("biology")
  sciences.Add("chemistry")
  
  // Create a string-based set of electives.
  electives := mapset.NewSet[string]()
  electives.Add("welding")
  electives.Add("music")
  electives.Add("automotive")

  // Create a string-based set of bonus programming classes.
  bonus := mapset.NewSet[string]()
  bonus.Add("beginner go")
  bonus.Add("python for dummies")
}

Create a set of all unique classes. Sets will automatically deduplicate the same data.

  all := required
    .Union(sciences)
    .Union(electives)
    .Union(bonus)
  
  fmt.Println(all)

Output:

Set{cooking, english, math, chemistry, welding, biology, music, automotive, beginner go, python for dummies}

Is cooking considered a science class?

result := sciences.Contains("cooking")
fmt.Println(result)

Output:

false

Show me all classes that are not science classes, since I don't enjoy science.

notScience := all.Difference(sciences)
fmt.Println(notScience)
Set{ music, automotive, beginner go, python for dummies, cooking, english, math, welding }

Which science classes are also required classes?

reqScience := sciences.Intersect(required)

Output:

Set{biology}

How many bonus classes do you offer?

fmt.Println(bonus.Cardinality())

Output:

2

Thanks for visiting!

-deckarep