MustInt16 requires parameter value to exist to bind to int16 variable. Returns error when value does not exist
(sourceParam string, dest *int16)
| 494 | |
| 495 | // MustInt16 requires parameter value to exist to bind to int16 variable. Returns error when value does not exist |
| 496 | func (b *ValueBinder) MustInt16(sourceParam string, dest *int16) *ValueBinder { |
| 497 | return b.intValue(sourceParam, dest, 16, true) |
| 498 | } |
| 499 | |
| 500 | // Int8 binds parameter to int8 variable |
| 501 | func (b *ValueBinder) Int8(sourceParam string, dest *int8) *ValueBinder { |