Int64 binds parameter to int64 variable
(sourceParam string, dest *int64)
| 469 | |
| 470 | // Int64 binds parameter to int64 variable |
| 471 | func (b *ValueBinder) Int64(sourceParam string, dest *int64) *ValueBinder { |
| 472 | return b.intValue(sourceParam, dest, 64, false) |
| 473 | } |
| 474 | |
| 475 | // MustInt64 requires parameter value to exist to bind to int64 variable. Returns error when value does not exist |
| 476 | func (b *ValueBinder) MustInt64(sourceParam string, dest *int64) *ValueBinder { |