(e *Encoder, v reflect.Value)
| 208 | } |
| 209 | |
| 210 | func encodeIntValue(e *Encoder, v reflect.Value) error { |
| 211 | return e.EncodeInt(v.Int()) |
| 212 | } |
| 213 | |
| 214 | func encodeUint8CondValue(e *Encoder, v reflect.Value) error { |
| 215 | return e.encodeUint8Cond(uint8(v.Uint())) |
nothing calls this directly
no test coverage detected
searching dependent graphs…