(e *Encoder, v reflect.Value)
| 228 | } |
| 229 | |
| 230 | func encodeInt8CondValue(e *Encoder, v reflect.Value) error { |
| 231 | return e.encodeInt8Cond(int8(v.Int())) |
| 232 | } |
| 233 | |
| 234 | func encodeInt16CondValue(e *Encoder, v reflect.Value) error { |
| 235 | return e.encodeInt16Cond(int16(v.Int())) |
nothing calls this directly
no test coverage detected
searching dependent graphs…