add adds str to the set.
(str string)
| 773 | |
| 774 | // add adds str to the set. |
| 775 | func (s *stringSet) add(str string) { |
| 776 | *s = append(*s, str) |
| 777 | } |
| 778 | |
| 779 | // clean removes duplicates from the stringSet. |
| 780 | func (s *stringSet) clean(isSuffix bool) { |
no outgoing calls
no test coverage detected