Int64s binds parameter to slice of int64
(sourceParam string, dest *[]int64)
| 637 | |
| 638 | // Int64s binds parameter to slice of int64 |
| 639 | func (b *ValueBinder) Int64s(sourceParam string, dest *[]int64) *ValueBinder { |
| 640 | return b.intsValue(sourceParam, dest, false) |
| 641 | } |
| 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 { |