Uint64s binds parameter to slice of uint64
(sourceParam string, dest *[]uint64)
| 865 | |
| 866 | // Uint64s binds parameter to slice of uint64 |
| 867 | func (b *ValueBinder) Uint64s(sourceParam string, dest *[]uint64) *ValueBinder { |
| 868 | return b.uintsValue(sourceParam, dest, false) |
| 869 | } |
| 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 { |