MustInts requires parameter value to exist to bind to int slice variable. Returns error when value does not exist
(sourceParam string, dest *[]int)
| 682 | |
| 683 | // MustInts requires parameter value to exist to bind to int slice variable. Returns error when value does not exist |
| 684 | func (b *ValueBinder) MustInts(sourceParam string, dest *[]int) *ValueBinder { |
| 685 | return b.intsValue(sourceParam, dest, true) |
| 686 | } |
| 687 | |
| 688 | // Uint64 binds parameter to uint64 variable |
| 689 | func (b *ValueBinder) Uint64(sourceParam string, dest *uint64) *ValueBinder { |