Uint16s binds parameter to slice of uint16
(sourceParam string, dest *[]uint16)
| 885 | |
| 886 | // Uint16s binds parameter to slice of uint16 |
| 887 | func (b *ValueBinder) Uint16s(sourceParam string, dest *[]uint16) *ValueBinder { |
| 888 | return b.uintsValue(sourceParam, dest, false) |
| 889 | } |
| 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 { |