Int8s binds parameter to slice of int8
(sourceParam string, dest *[]int8)
| 667 | |
| 668 | // Int8s binds parameter to slice of int8 |
| 669 | func (b *ValueBinder) Int8s(sourceParam string, dest *[]int8) *ValueBinder { |
| 670 | return b.intsValue(sourceParam, dest, false) |
| 671 | } |
| 672 | |
| 673 | // MustInt8s requires parameter value to exist to bind to int8 slice variable. Returns error when value does not exist |
| 674 | func (b *ValueBinder) MustInt8s(sourceParam string, dest *[]int8) *ValueBinder { |