MustInt32s requires parameter value to exist to bind to int32 slice variable. Returns error when value does not exist
(sourceParam string, dest *[]int32)
| 652 | |
| 653 | // MustInt32s requires parameter value to exist to bind to int32 slice variable. Returns error when value does not exist |
| 654 | func (b *ValueBinder) MustInt32s(sourceParam string, dest *[]int32) *ValueBinder { |
| 655 | return b.intsValue(sourceParam, dest, true) |
| 656 | } |
| 657 | |
| 658 | // Int16s binds parameter to slice of int16 |
| 659 | func (b *ValueBinder) Int16s(sourceParam string, dest *[]int16) *ValueBinder { |