MCPcopy Index your code
hub / github.com/labstack/echo / MustFloat64

Method MustFloat64

binder.go:997–999  ·  view source on GitHub ↗

MustFloat64 requires parameter value to exist to bind to float64 variable. Returns error when value does not exist

(sourceParam string, dest *float64)

Source from the content-addressed store, hash-verified

995
996// MustFloat64 requires parameter value to exist to bind to float64 variable. Returns error when value does not exist
997func (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
1002func (b *ValueBinder) Float32(sourceParam string, dest *float32) *ValueBinder {

Callers 1

TestValueBinder_Float64Function · 0.80

Calls 1

floatValueMethod · 0.95

Tested by 1

TestValueBinder_Float64Function · 0.64