MustUint64s requires parameter value to exist to bind to uint64 slice variable. Returns error when value does not exist
(sourceParam string, dest *[]uint64)
| 870 | |
| 871 | // MustUint64s requires parameter value to exist to bind to uint64 slice variable. Returns error when value does not exist |
| 872 | func (b *ValueBinder) MustUint64s(sourceParam string, dest *[]uint64) *ValueBinder { |
| 873 | return b.uintsValue(sourceParam, dest, true) |
| 874 | } |
| 875 | |
| 876 | // Uint32s binds parameter to slice of uint32 |
| 877 | func (b *ValueBinder) Uint32s(sourceParam string, dest *[]uint32) *ValueBinder { |