(e *Encoder, v reflect.Value)
| 236 | } |
| 237 | |
| 238 | func encodeInt32CondValue(e *Encoder, v reflect.Value) error { |
| 239 | return e.encodeInt32Cond(int32(v.Int())) |
| 240 | } |
| 241 | |
| 242 | func encodeInt64CondValue(e *Encoder, v reflect.Value) error { |
| 243 | return e.encodeInt64Cond(v.Int()) |
nothing calls this directly
no test coverage detected
searching dependent graphs…