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

Method Bools

binder.go:982–984  ·  view source on GitHub ↗

Bools binds parameter values to slice of bool variables

(sourceParam string, dest *[]bool)

Source from the content-addressed store, hash-verified

980
981// Bools binds parameter values to slice of bool variables
982func (b *ValueBinder) Bools(sourceParam string, dest *[]bool) *ValueBinder {
983 return b.boolsValue(sourceParam, dest, false)
984}
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 {

Callers 1

TestValueBinder_BoolsFunction · 0.80

Calls 1

boolsValueMethod · 0.95

Tested by 1

TestValueBinder_BoolsFunction · 0.64