UintSlice looks up the value of a local UintSliceFlag, returns nil if not found
(name string)
| 24 | // UintSlice looks up the value of a local UintSliceFlag, returns |
| 25 | // nil if not found |
| 26 | func (cmd *Command) UintSlice(name string) []uint { |
| 27 | return getUintSlice[uint](cmd, name) |
| 28 | } |
| 29 | |
| 30 | // Uint8Slice looks up the value of a local Uint8SliceFlag, returns |
| 31 | // nil if not found |
no outgoing calls