Float32SliceVarP is like Float32SliceVar, but accepts a shorthand letter that can be used after a single dash.
(p *[]float32, name, shorthand string, value []float32, usage string)
| 144 | |
| 145 | // Float32SliceVarP is like Float32SliceVar, but accepts a shorthand letter that can be used after a single dash. |
| 146 | func Float32SliceVarP(p *[]float32, name, shorthand string, value []float32, usage string) { |
| 147 | CommandLine.VarP(newFloat32SliceValue(value, p), name, shorthand, usage) |
| 148 | } |
| 149 | |
| 150 | // Float32Slice defines a []float32 flag with specified name, default value, and usage string. |
| 151 | // The return value is the address of a []float32 variable that stores the value of the flag. |
nothing calls this directly
no test coverage detected