StringArrayP is like StringArray, but accepts a shorthand letter that can be used after a single dash.
(name, shorthand string, value []string, usage string)
| 121 | |
| 122 | // StringArrayP is like StringArray, but accepts a shorthand letter that can be used after a single dash. |
| 123 | func StringArrayP(name, shorthand string, value []string, usage string) *[]string { |
| 124 | return CommandLine.StringArrayP(name, shorthand, value, usage) |
| 125 | } |
nothing calls this directly
no test coverage detected