MustInt64s requires parameter value to exist to bind to int64 slice variable. Returns error when value does not exist
(sourceParam string, dest *[]int64)
| 642 | |
| 643 | // MustInt64s requires parameter value to exist to bind to int64 slice variable. Returns error when value does not exist |
| 644 | func (b *ValueBinder) MustInt64s(sourceParam string, dest *[]int64) *ValueBinder { |
| 645 | return b.intsValue(sourceParam, dest, true) |
| 646 | } |
| 647 | |
| 648 | // Int32s binds parameter to slice of int32 |
| 649 | func (b *ValueBinder) Int32s(sourceParam string, dest *[]int32) *ValueBinder { |