Int binds parameter to int variable
(sourceParam string, dest *int)
| 509 | |
| 510 | // Int binds parameter to int variable |
| 511 | func (b *ValueBinder) Int(sourceParam string, dest *int) *ValueBinder { |
| 512 | return b.intValue(sourceParam, dest, 0, false) |
| 513 | } |
| 514 | |
| 515 | // MustInt requires parameter value to exist to bind to int variable. Returns error when value does not exist |
| 516 | func (b *ValueBinder) MustInt(sourceParam string, dest *int) *ValueBinder { |