Int16s binds parameter to slice of int16
(sourceParam string, dest *[]int16)
| 657 | |
| 658 | // Int16s binds parameter to slice of int16 |
| 659 | func (b *ValueBinder) Int16s(sourceParam string, dest *[]int16) *ValueBinder { |
| 660 | return b.intsValue(sourceParam, dest, false) |
| 661 | } |
| 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 { |