Value is the interface to the dynamic value stored in a flag. (The default value is represented as a string.)
| 208 | // Value is the interface to the dynamic value stored in a flag. |
| 209 | // (The default value is represented as a string.) |
| 210 | type Value interface { |
| 211 | String() string |
| 212 | Set(string) error |
| 213 | Type() string |
| 214 | } |
| 215 | |
| 216 | // SliceValue is a secondary interface to all flags which hold a list |
| 217 | // of values. This allows full control over the value of list flags, |
no outgoing calls
no test coverage detected