Int looks up the value of a local Int64Flag, returns 0 if not found
(name string)
| 65 | // Int looks up the value of a local Int64Flag, returns |
| 66 | // 0 if not found |
| 67 | func (cmd *Command) Int(name string) int { |
| 68 | return getInt[int](cmd, name) |
| 69 | } |
| 70 | |
| 71 | // Int8 looks up the value of a local Int8Flag, returns |
| 72 | // 0 if not found |
no outgoing calls