(e *Encoder, v reflect.Value)
| 232 | } |
| 233 | |
| 234 | func encodeInt16CondValue(e *Encoder, v reflect.Value) error { |
| 235 | return e.encodeInt16Cond(int16(v.Int())) |
| 236 | } |
| 237 | |
| 238 | func encodeInt32CondValue(e *Encoder, v reflect.Value) error { |
| 239 | return e.encodeInt32Cond(int32(v.Int())) |
nothing calls this directly
no test coverage detected
searching dependent graphs…