Float32 binds parameter to float32 variable
(sourceParam string, dest *float32)
| 1000 | |
| 1001 | // Float32 binds parameter to float32 variable |
| 1002 | func (b *ValueBinder) Float32(sourceParam string, dest *float32) *ValueBinder { |
| 1003 | return b.floatValue(sourceParam, dest, 32, false) |
| 1004 | } |
| 1005 | |
| 1006 | // MustFloat32 requires parameter value to exist to bind to float32 variable. Returns error when value does not exist |
| 1007 | func (b *ValueBinder) MustFloat32(sourceParam string, dest *float32) *ValueBinder { |