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