(e *Encoder, v reflect.Value)
| 240 | } |
| 241 | |
| 242 | func encodeInt64CondValue(e *Encoder, v reflect.Value) error { |
| 243 | return e.encodeInt64Cond(v.Int()) |
| 244 | } |
| 245 | |
| 246 | func encodeFloat32Value(e *Encoder, v reflect.Value) error { |
| 247 | return e.EncodeFloat32(float32(v.Float())) |
nothing calls this directly
no test coverage detected
searching dependent graphs…