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

Method MustFloat64s

binder.go:1092–1094  ·  view source on GitHub ↗

MustFloat64s requires parameter values to exist to bind to slice of float64 variables. Returns error when values does not exist

(sourceParam string, dest *[]float64)

Source from the content-addressed store, hash-verified

1090
1091// MustFloat64s requires parameter values to exist to bind to slice of float64 variables. Returns error when values does not exist
1092func (b *ValueBinder) MustFloat64s(sourceParam string, dest *[]float64) *ValueBinder {
1093 return b.floatsValue(sourceParam, dest, true)
1094}
1095
1096// Float32s binds parameter values to slice of float32 variables
1097func (b *ValueBinder) Float32s(sourceParam string, dest *[]float32) *ValueBinder {

Callers 1

TestValueBinder_Float64sFunction · 0.80

Calls 1

floatsValueMethod · 0.95

Tested by 1

TestValueBinder_Float64sFunction · 0.64