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

Method Float32

binder.go:1002–1004  ·  view source on GitHub ↗

Float32 binds parameter to float32 variable

(sourceParam string, dest *float32)

Source from the content-addressed store, hash-verified

1000
1001// Float32 binds parameter to float32 variable
1002func (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
1007func (b *ValueBinder) MustFloat32(sourceParam string, dest *float32) *ValueBinder {

Callers 1

TestValueBinder_Float32Function · 0.80

Calls 1

floatValueMethod · 0.95

Tested by 1

TestValueBinder_Float32Function · 0.64