String returns the string representation of the flag given by name. It panics if the flag is not in the flag set.
(name string)
| 310 | // flag given by name. It panics if the flag is not |
| 311 | // in the flag set. |
| 312 | func (f Flags) String(name string) string { |
| 313 | return f.FlagSet.Lookup(name).Value.String() |
| 314 | } |
| 315 | |
| 316 | // Bool returns the boolean representation of the |
| 317 | // flag given by name. It returns false if the flag |
no outgoing calls