Uint32s binds parameter to slice of uint32
(sourceParam string, dest *[]uint32)
| 875 | |
| 876 | // Uint32s binds parameter to slice of uint32 |
| 877 | func (b *ValueBinder) Uint32s(sourceParam string, dest *[]uint32) *ValueBinder { |
| 878 | return b.uintsValue(sourceParam, dest, false) |
| 879 | } |
| 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 { |