Float32s binds parameter values to slice of float32 variables
(sourceParam string, dest *[]float32)
| 1095 | |
| 1096 | // Float32s binds parameter values to slice of float32 variables |
| 1097 | func (b *ValueBinder) Float32s(sourceParam string, dest *[]float32) *ValueBinder { |
| 1098 | return b.floatsValue(sourceParam, dest, false) |
| 1099 | } |
| 1100 | |
| 1101 | // MustFloat32s requires parameter values to exist to bind to slice of float32 variables. Returns error when values does not exist |
| 1102 | func (b *ValueBinder) MustFloat32s(sourceParam string, dest *[]float32) *ValueBinder { |