Int implements the plugin.FlagSet interface.
(o string, d int, c string)
| 31 | |
| 32 | // Int implements the plugin.FlagSet interface. |
| 33 | func (*GoFlags) Int(o string, d int, c string) *int { |
| 34 | return flag.Int(o, d, c) |
| 35 | } |
| 36 | |
| 37 | // Float64 implements the plugin.FlagSet interface. |
| 38 | func (*GoFlags) Float64(o string, d float64, c string) *float64 { |