(w binary.Writer)
| 113 | w.Float32(float32(v)) |
| 114 | } |
| 115 | func (v valFloatPx) encode(w binary.Writer) { |
| 116 | writeTypedValueHeader(w, typeDimension) |
| 117 | encodeDimension(w, float32(v), 0) |
| 118 | } |
| 119 | func (v valFloatDp) encode(w binary.Writer) { |
| 120 | writeTypedValueHeader(w, typeDimension) |
| 121 | encodeDimension(w, float32(v), 1) |
nothing calls this directly
no test coverage detected