(w binary.Writer)
| 133 | encodeDimension(w, float32(v), 4) |
| 134 | } |
| 135 | func (v valFloatMm) encode(w binary.Writer) { |
| 136 | writeTypedValueHeader(w, typeDimension) |
| 137 | encodeDimension(w, float32(v), 5) |
| 138 | } |
| 139 | func (v valIntBoolean) encode(w binary.Writer) { |
| 140 | writeTypedValueHeader(w, typeIntBoolean) |
| 141 | if bool(v) { |
nothing calls this directly
no test coverage detected