Int16 looks up the value of a local Int16Flag, returns 0 if not found
(name string)
| 77 | // Int16 looks up the value of a local Int16Flag, returns |
| 78 | // 0 if not found |
| 79 | func (cmd *Command) Int16(name string) int16 { |
| 80 | return getInt[int16](cmd, name) |
| 81 | } |
| 82 | |
| 83 | // Int32 looks up the value of a local Int32Flag, returns |
| 84 | // 0 if not found |
no outgoing calls