type Set struct {
// contains filtered or unexported fields
}
Set is an exceptionally simple `set` implementation for strings.
It is not threadsafe, but can be used in place of a simple `map[string]struct{}`
as long as you don't want to do too much with it.