Bool implements the plugin.FlagSet interface.
(o string, d bool, c string)
| 26 | |
| 27 | // Bool implements the plugin.FlagSet interface. |
| 28 | func (*GoFlags) Bool(o string, d bool, c string) *bool { |
| 29 | return flag.Bool(o, d, c) |
| 30 | } |
| 31 | |
| 32 | // Int implements the plugin.FlagSet interface. |
| 33 | func (*GoFlags) Int(o string, d int, c string) *int { |