(t reflect.Type, pointer bool)
| 826 | } |
| 827 | |
| 828 | func constructTextUnmarshalerDecodeFunc(t reflect.Type, pointer bool) decodeFunc { |
| 829 | return func(d decoder, b []byte, p unsafe.Pointer) ([]byte, error) { |
| 830 | return d.decodeTextUnmarshaler(b, p, t, pointer) |
| 831 | } |
| 832 | } |
| 833 | |
| 834 | func constructInlineValueEncodeFunc(encode encodeFunc) encodeFunc { |
| 835 | return func(e encoder, b []byte, p unsafe.Pointer) ([]byte, error) { |
no test coverage detected
searching dependent graphs…