Int32s binds parameter to slice of int32
(sourceParam string, dest *[]int32)
| 647 | |
| 648 | // Int32s binds parameter to slice of int32 |
| 649 | func (b *ValueBinder) Int32s(sourceParam string, dest *[]int32) *ValueBinder { |
| 650 | return b.intsValue(sourceParam, dest, false) |
| 651 | } |
| 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 { |