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

Method MustBools

binder.go:987–989  ·  view source on GitHub ↗

MustBools requires parameter values to exist to bind to slice of bool variables. Returns error when values does not exist

(sourceParam string, dest *[]bool)

Source from the content-addressed store, hash-verified

985
986// MustBools requires parameter values to exist to bind to slice of bool variables. Returns error when values does not exist
987func (b *ValueBinder) MustBools(sourceParam string, dest *[]bool) *ValueBinder {
988 return b.boolsValue(sourceParam, dest, true)
989}
990
991// Float64 binds parameter to float64 variable
992func (b *ValueBinder) Float64(sourceParam string, dest *float64) *ValueBinder {

Callers 1

TestValueBinder_BoolsFunction · 0.80

Calls 1

boolsValueMethod · 0.95

Tested by 1

TestValueBinder_BoolsFunction · 0.64