UniqueStringsValue wraps a list of unique strings. The values are set in order.
| 24 | // UniqueStringsValue wraps a list of unique strings. |
| 25 | // The values are set in order. |
| 26 | type UniqueStringsValue struct { |
| 27 | Values map[string]struct{} |
| 28 | } |
| 29 | |
| 30 | // Set parses a command line set of strings, separated by comma. |
| 31 | // Implements "flag.Value" interface. |
nothing calls this directly
no outgoing calls
no test coverage detected