MustInt8 requires parameter value to exist to bind to int8 variable. Returns error when value does not exist
(sourceParam string, dest *int8)
| 504 | |
| 505 | // MustInt8 requires parameter value to exist to bind to int8 variable. Returns error when value does not exist |
| 506 | func (b *ValueBinder) MustInt8(sourceParam string, dest *int8) *ValueBinder { |
| 507 | return b.intValue(sourceParam, dest, 8, true) |
| 508 | } |
| 509 | |
| 510 | // Int binds parameter to int variable |
| 511 | func (b *ValueBinder) Int(sourceParam string, dest *int) *ValueBinder { |