F32 stores a float32.
(v float32)
| 71 | |
| 72 | // F32 stores a float32. |
| 73 | func (e *Encoder) F32(v float32) { |
| 74 | e.alignAndOffset(e.m.F32) |
| 75 | e.w.Float32(v) |
| 76 | } |
| 77 | |
| 78 | // F64 stores a float64. |
| 79 | func (e *Encoder) F64(v float64) { |
nothing calls this directly
no test coverage detected