MustUint16s requires parameter value to exist to bind to uint16 slice variable. Returns error when value does not exist
(sourceParam string, dest *[]uint16)
| 890 | |
| 891 | // MustUint16s requires parameter value to exist to bind to uint16 slice variable. Returns error when value does not exist |
| 892 | func (b *ValueBinder) MustUint16s(sourceParam string, dest *[]uint16) *ValueBinder { |
| 893 | return b.uintsValue(sourceParam, dest, true) |
| 894 | } |
| 895 | |
| 896 | // Uint8s binds parameter to slice of uint8 |
| 897 | func (b *ValueBinder) Uint8s(sourceParam string, dest *[]uint8) *ValueBinder { |