size returns the number of strings in s.
()
| 796 | |
| 797 | // size returns the number of strings in s. |
| 798 | func (s stringSet) size() int { |
| 799 | return len(s) |
| 800 | } |
| 801 | |
| 802 | // minLen returns the length of the shortest string in s. |
| 803 | func (s stringSet) minLen() int { |
no outgoing calls
no test coverage detected