Bools binds parameter values to slice of bool variables
(sourceParam string, dest *[]bool)
| 980 | |
| 981 | // Bools binds parameter values to slice of bool variables |
| 982 | func (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 |
| 987 | func (b *ValueBinder) MustBools(sourceParam string, dest *[]bool) *ValueBinder { |