Created
June 14, 2020 03:30
-
-
Save pacuna/cd16b597b0f06b71d02a6c6b25e53e93 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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