(w binary.Writer)
| 109 | w.Uint32(stringPoolRef(v).stringPoolIndex()) |
| 110 | } |
| 111 | func (v valFloat) encode(w binary.Writer) { |
| 112 | writeTypedValueHeader(w, typeFloat) |
| 113 | w.Float32(float32(v)) |
| 114 | } |
| 115 | func (v valFloatPx) encode(w binary.Writer) { |
| 116 | writeTypedValueHeader(w, typeDimension) |
| 117 | encodeDimension(w, float32(v), 0) |
nothing calls this directly
no test coverage detected