MustUints requires parameter value to exist to bind to uint slice variable. Returns error when value does not exist
(sourceParam string, dest *[]uint)
| 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 { |
| 913 | return b.uintsValue(sourceParam, dest, true) |
| 914 | } |
| 915 | |
| 916 | // Bool binds parameter to bool variable |
| 917 | func (b *ValueBinder) Bool(sourceParam string, dest *bool) *ValueBinder { |