MustUint32s requires parameter value to exist to bind to uint32 slice variable. Returns error when value does not exist
(sourceParam string, dest *[]uint32)
| 880 | |
| 881 | // MustUint32s requires parameter value to exist to bind to uint32 slice variable. Returns error when value does not exist |
| 882 | func (b *ValueBinder) MustUint32s(sourceParam string, dest *[]uint32) *ValueBinder { |
| 883 | return b.uintsValue(sourceParam, dest, true) |
| 884 | } |
| 885 | |
| 886 | // Uint16s binds parameter to slice of uint16 |
| 887 | func (b *ValueBinder) Uint16s(sourceParam string, dest *[]uint16) *ValueBinder { |