(values ...string)
| 70 | } |
| 71 | |
| 72 | func stringSet(values ...string) map[string]struct{} { |
| 73 | out := make(map[string]struct{}, len(values)) |
| 74 | for _, value := range values { |
| 75 | out[value] = struct{}{} |
| 76 | } |
| 77 | return out |
| 78 | } |
no outgoing calls
no test coverage detected