Int8 looks up the value of a local Int8Flag, returns 0 if not found
(name string)
| 71 | // Int8 looks up the value of a local Int8Flag, returns |
| 72 | // 0 if not found |
| 73 | func (cmd *Command) Int8(name string) int8 { |
| 74 | return getInt[int8](cmd, name) |
| 75 | } |
| 76 | |
| 77 | // Int16 looks up the value of a local Int16Flag, returns |
| 78 | // 0 if not found |