MustInt8s requires parameter value to exist to bind to int8 slice variable. Returns error when value does not exist
(sourceParam string, dest *[]int8)
| 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 { |
| 675 | return b.intsValue(sourceParam, dest, true) |
| 676 | } |
| 677 | |
| 678 | // Ints binds parameter to slice of int |
| 679 | func (b *ValueBinder) Ints(sourceParam string, dest *[]int) *ValueBinder { |