(in *jsontext.Decoder, out any, opts ...json.Options)
| 59 | } |
| 60 | |
| 61 | func UnmarshalDecode(in *jsontext.Decoder, out any, opts ...json.Options) (err error) { |
| 62 | return json.UnmarshalDecode(in, out, opts...) |
| 63 | } |
| 64 | |
| 65 | func UnmarshalRead(in io.Reader, out any, opts ...json.Options) (err error) { |
| 66 | return json.UnmarshalRead(in, out, opts...) |
no outgoing calls
no test coverage detected