(w binary.Writer)
| 125 | encodeDimension(w, float32(v), 2) |
| 126 | } |
| 127 | func (v valFloatPt) encode(w binary.Writer) { |
| 128 | writeTypedValueHeader(w, typeDimension) |
| 129 | encodeDimension(w, float32(v), 3) |
| 130 | } |
| 131 | func (v valFloatIn) encode(w binary.Writer) { |
| 132 | writeTypedValueHeader(w, typeDimension) |
| 133 | encodeDimension(w, float32(v), 4) |
nothing calls this directly
no test coverage detected