(e *Encoder, v reflect.Value)
| 212 | } |
| 213 | |
| 214 | func encodeUint8CondValue(e *Encoder, v reflect.Value) error { |
| 215 | return e.encodeUint8Cond(uint8(v.Uint())) |
| 216 | } |
| 217 | |
| 218 | func encodeUint16CondValue(e *Encoder, v reflect.Value) error { |
| 219 | return e.encodeUint16Cond(uint16(v.Uint())) |
nothing calls this directly
no test coverage detected
searching dependent graphs…