(t reflect.Type)
| 777 | } |
| 778 | |
| 779 | func constructMaybeEmptyInterfaceEncoderFunc(t reflect.Type) encodeFunc { |
| 780 | return func(e encoder, b []byte, p unsafe.Pointer) ([]byte, error) { |
| 781 | return e.encodeMaybeEmptyInterface(b, p, t) |
| 782 | } |
| 783 | } |
| 784 | |
| 785 | func constructMaybeEmptyInterfaceDecoderFunc(t reflect.Type) decodeFunc { |
| 786 | return func(d decoder, b []byte, p unsafe.Pointer) ([]byte, error) { |
no test coverage detected
searching dependent graphs…