Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type StringSet ¶
type StringSet interface { // Add adds 'key' to the set Add(key string) // Remove removes 'key' from the set Remove(key string) // Contains checks if the set contains 'key' Contains(key string) bool // Clear clears the contents of set Clear() // ToSlice returns a slice containing all elements in the set ToSlice() []string }
StringSet defines the interface for a set of strings
Click to show internal directories.
Click to hide internal directories.