Uint8Slice looks up the value of a local Uint8SliceFlag, returns nil if not found
(name string)
| 30 | // Uint8Slice looks up the value of a local Uint8SliceFlag, returns |
| 31 | // nil if not found |
| 32 | func (cmd *Command) Uint8Slice(name string) []uint8 { |
| 33 | return getUintSlice[uint8](cmd, name) |
| 34 | } |
| 35 | |
| 36 | // Uint16Slice looks up the value of a local Uint16SliceFlag, returns |
| 37 | // nil if not found |
no outgoing calls