IsEmpty - returns whether the set is empty or not.
()
| 58 | |
| 59 | // IsEmpty - returns whether the set is empty or not. |
| 60 | func (set StringSet) IsEmpty() bool { |
| 61 | return Set[string](set).IsEmpty() |
| 62 | } |
| 63 | |
| 64 | // Add - adds string to the set. |
| 65 | func (set StringSet) Add(s string) { |
no outgoing calls