Skip to content

Instantly share code, notes, and snippets.

@pacuna
Created June 15, 2020 00:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pacuna/5770e19ca99339664637938ba980fa7a to your computer and use it in GitHub Desktop.
Save pacuna/5770e19ca99339664637938ba980fa7a to your computer and use it in GitHub Desktop.
package set
type Set interface {
Add(item []byte) bool
Remove(item []byte) bool
Contains(item []byte) bool
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment