Float64s binds parameter values to slice of float64 variables
(sourceParam string, dest *[]float64)
| 1085 | |
| 1086 | // Float64s binds parameter values to slice of float64 variables |
| 1087 | func (b *ValueBinder) Float64s(sourceParam string, dest *[]float64) *ValueBinder { |
| 1088 | return b.floatsValue(sourceParam, dest, false) |
| 1089 | } |
| 1090 | |
| 1091 | // MustFloat64s requires parameter values to exist to bind to slice of float64 variables. Returns error when values does not exist |
| 1092 | func (b *ValueBinder) MustFloat64s(sourceParam string, dest *[]float64) *ValueBinder { |