Skip to content

Instantly share code, notes, and snippets.

@pacuna
Created June 14, 2020 03:30
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/cd16b597b0f06b71d02a6c6b25e53e93 to your computer and use it in GitHub Desktop.
Save pacuna/cd16b597b0f06b71d02a6c6b25e53e93 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