(values map[string]bool)
| 494 | } |
| 495 | |
| 496 | func sortedKeys(values map[string]bool) []string { |
| 497 | out := make([]string, 0, len(values)) |
| 498 | for value := range values { |
| 499 | out = append(out, value) |
| 500 | } |
| 501 | sort.Strings(out) |
| 502 | return out |
| 503 | } |
no outgoing calls
no test coverage detected