Int32 binds parameter to int32 variable
(sourceParam string, dest *int32)
| 479 | |
| 480 | // Int32 binds parameter to int32 variable |
| 481 | func (b *ValueBinder) Int32(sourceParam string, dest *int32) *ValueBinder { |
| 482 | return b.intValue(sourceParam, dest, 32, false) |
| 483 | } |
| 484 | |
| 485 | // MustInt32 requires parameter value to exist to bind to int32 variable. Returns error when value does not exist |
| 486 | func (b *ValueBinder) MustInt32(sourceParam string, dest *int32) *ValueBinder { |