Int32 looks up the value of a local Int32Flag, returns 0 if not found
(name string)
| 83 | // Int32 looks up the value of a local Int32Flag, returns |
| 84 | // 0 if not found |
| 85 | func (cmd *Command) Int32(name string) int32 { |
| 86 | return getInt[int32](cmd, name) |
| 87 | } |
| 88 | |
| 89 | // Int64 looks up the value of a local Int64Flag, returns |
| 90 | // 0 if not found |
no outgoing calls