(w Writer, v reflect.Value, _ flags)
| 120 | } |
| 121 | |
| 122 | func encodeInt64(w Writer, v reflect.Value, _ flags) error { |
| 123 | return w.WriteInt64(v.Int()) |
| 124 | } |
| 125 | |
| 126 | func encodeFloat64(w Writer, v reflect.Value, _ flags) error { |
| 127 | return w.WriteFloat64(v.Float()) |
nothing calls this directly
no test coverage detected
searching dependent graphs…