| 330 | } |
| 331 | |
| 332 | type floatBuilder struct { |
| 333 | typ super.Type |
| 334 | values []float64 |
| 335 | } |
| 336 | |
| 337 | func (f *floatBuilder) Write(bytes scode.Bytes) { |
| 338 | f.values = append(f.values, super.DecodeFloat(bytes)) |
nothing calls this directly
no outgoing calls
no test coverage detected