Float64 binds parameter to float64 variable
(sourceParam string, dest *float64)
| 990 | |
| 991 | // Float64 binds parameter to float64 variable |
| 992 | func (b *ValueBinder) Float64(sourceParam string, dest *float64) *ValueBinder { |
| 993 | return b.floatValue(sourceParam, dest, 64, false) |
| 994 | } |
| 995 | |
| 996 | // MustFloat64 requires parameter value to exist to bind to float64 variable. Returns error when value does not exist |
| 997 | func (b *ValueBinder) MustFloat64(sourceParam string, dest *float64) *ValueBinder { |