()
| 35 | } |
| 36 | |
| 37 | func (opts *listValue) String() string { |
| 38 | if len(opts.values) == 0 { |
| 39 | return "" |
| 40 | } |
| 41 | |
| 42 | return fmt.Sprintf("%v", opts.values) |
| 43 | } |
| 44 | |
| 45 | // Set validates if needed the input value and adds it to the |
| 46 | // internal slice. |
no outgoing calls
no test coverage detected