Pointer stores a pointer address.
(addr uint64)
| 65 | |
| 66 | // Pointer stores a pointer address. |
| 67 | func (e *Encoder) Pointer(addr uint64) { |
| 68 | e.alignAndOffset(e.m.Pointer) |
| 69 | binary.WriteUint(e.w, 8*e.m.Pointer.Size, addr) |
| 70 | } |
| 71 | |
| 72 | // F32 stores a float32. |
| 73 | func (e *Encoder) F32(v float32) { |
nothing calls this directly
no test coverage detected