MustInt16s requires parameter value to exist to bind to int16 slice variable. Returns error when value does not exist
(sourceParam string, dest *[]int16)
| 662 | |
| 663 | // MustInt16s requires parameter value to exist to bind to int16 slice variable. Returns error when value does not exist |
| 664 | func (b *ValueBinder) MustInt16s(sourceParam string, dest *[]int16) *ValueBinder { |
| 665 | return b.intsValue(sourceParam, dest, true) |
| 666 | } |
| 667 | |
| 668 | // Int8s binds parameter to slice of int8 |
| 669 | func (b *ValueBinder) Int8s(sourceParam string, dest *[]int8) *ValueBinder { |