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

Method Float64

binder.go:992–994  ·  view source on GitHub ↗

Float64 binds parameter to float64 variable

(sourceParam string, dest *float64)

Source from the content-addressed store, hash-verified

990
991// Float64 binds parameter to float64 variable
992func (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
997func (b *ValueBinder) MustFloat64(sourceParam string, dest *float64) *ValueBinder {

Callers 1

TestValueBinder_Float64Function · 0.80

Calls 1

floatValueMethod · 0.95

Tested by 1

TestValueBinder_Float64Function · 0.64