Uint8s binds parameter to slice of uint8
(sourceParam string, dest *[]uint8)
| 895 | |
| 896 | // Uint8s binds parameter to slice of uint8 |
| 897 | func (b *ValueBinder) Uint8s(sourceParam string, dest *[]uint8) *ValueBinder { |
| 898 | return b.uintsValue(sourceParam, dest, false) |
| 899 | } |
| 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 { |