(w Writer, v reflect.Value, _ flags)
| 112 | } |
| 113 | |
| 114 | func encodeInt16(w Writer, v reflect.Value, _ flags) error { |
| 115 | return w.WriteInt16(int16(v.Int())) |
| 116 | } |
| 117 | |
| 118 | func encodeInt32(w Writer, v reflect.Value, _ flags) error { |
| 119 | return w.WriteInt32(int32(v.Int())) |
nothing calls this directly
no test coverage detected
searching dependent graphs…