(w Writer, v reflect.Value, _ flags)
| 116 | } |
| 117 | |
| 118 | func encodeInt32(w Writer, v reflect.Value, _ flags) error { |
| 119 | return w.WriteInt32(int32(v.Int())) |
| 120 | } |
| 121 | |
| 122 | func encodeInt64(w Writer, v reflect.Value, _ flags) error { |
| 123 | return w.WriteInt64(v.Int()) |
nothing calls this directly
no test coverage detected
searching dependent graphs…