Ints binds parameter to slice of int
(sourceParam string, dest *[]int)
| 677 | |
| 678 | // Ints binds parameter to slice of int |
| 679 | func (b *ValueBinder) Ints(sourceParam string, dest *[]int) *ValueBinder { |
| 680 | return b.intsValue(sourceParam, dest, false) |
| 681 | } |
| 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 { |