(ctx context.Context, args ...interface{})
| 1290 | var _ Cmder = (*IntSliceCmd)(nil) |
| 1291 | |
| 1292 | func NewIntSliceCmd(ctx context.Context, args ...interface{}) *IntSliceCmd { |
| 1293 | return &IntSliceCmd{ |
| 1294 | baseCmd: baseCmd{ |
| 1295 | ctx: ctx, |
| 1296 | args: args, |
| 1297 | cmdType: CmdTypeIntSlice, |
| 1298 | }, |
| 1299 | } |
| 1300 | } |
| 1301 | |
| 1302 | func (cmd *IntSliceCmd) SetVal(val []int64) { |
| 1303 | cmd.val = val |
no outgoing calls
no test coverage detected