MustUint8s requires parameter value to exist to bind to uint8 slice variable. Returns error when value does not exist
(sourceParam string, dest *[]uint8)
| 900 | |
| 901 | // MustUint8s requires parameter value to exist to bind to uint8 slice variable. Returns error when value does not exist |
| 902 | func (b *ValueBinder) MustUint8s(sourceParam string, dest *[]uint8) *ValueBinder { |
| 903 | return b.uintsValue(sourceParam, dest, true) |
| 904 | } |
| 905 | |
| 906 | // Uints binds parameter to slice of uint |
| 907 | func (b *ValueBinder) Uints(sourceParam string, dest *[]uint) *ValueBinder { |