Uints binds parameter to slice of uint
(sourceParam string, dest *[]uint)
| 905 | |
| 906 | // Uints binds parameter to slice of uint |
| 907 | func (b *ValueBinder) Uints(sourceParam string, dest *[]uint) *ValueBinder { |
| 908 | return b.uintsValue(sourceParam, dest, false) |
| 909 | } |
| 910 | |
| 911 | // MustUints requires parameter value to exist to bind to uint slice variable. Returns error when value does not exist |
| 912 | func (b *ValueBinder) MustUints(sourceParam string, dest *[]uint) *ValueBinder { |