MustFloat64s requires parameter values to exist to bind to slice of float64 variables. Returns error when values does not exist
(sourceParam string, dest *[]float64)
| 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 { |
| 1093 | return b.floatsValue(sourceParam, dest, true) |
| 1094 | } |
| 1095 | |
| 1096 | // Float32s binds parameter values to slice of float32 variables |
| 1097 | func (b *ValueBinder) Float32s(sourceParam string, dest *[]float32) *ValueBinder { |