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
package set | |
type Set interface { | |
Add(item []byte) bool | |
Remove(item []byte) bool | |
Contains(item []byte) bool | |
} |