| 12 | ) |
| 13 | |
| 14 | type FloatEncoder struct { |
| 15 | typ super.Type |
| 16 | vals []float64 |
| 17 | min, max float64 |
| 18 | out []byte |
| 19 | fmt uint8 |
| 20 | } |
| 21 | |
| 22 | func NewFloatEncoder(typ super.Type) *FloatEncoder { |
| 23 | return &FloatEncoder{typ: typ} |
nothing calls this directly
no outgoing calls
no test coverage detected