MustFloat64 requires parameter value to exist to bind to float64 variable. Returns error when value does not exist
(sourceParam string, dest *float64)
| 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 { |
| 998 | return b.floatValue(sourceParam, dest, 64, true) |
| 999 | } |
| 1000 | |
| 1001 | // Float32 binds parameter to float32 variable |
| 1002 | func (b *ValueBinder) Float32(sourceParam string, dest *float32) *ValueBinder { |