Iter returns an iterator that produces all KSUIDs in the set.
()
| 10 | |
| 11 | // Iter returns an iterator that produces all KSUIDs in the set. |
| 12 | func (set CompressedSet) Iter() CompressedSetIter { |
| 13 | return CompressedSetIter{ |
| 14 | content: []byte(set), |
| 15 | } |
| 16 | } |
| 17 | |
| 18 | // String satisfies the fmt.Stringer interface, returns a human-readable string |
| 19 | // representation of the set. |
no outgoing calls