Decode decodes from io.Reader specified at creation
(v any)
| 19 | type Decoder interface { |
| 20 | // Decode decodes from io.Reader specified at creation |
| 21 | Decode(v any) error |
| 22 | } |
| 23 | |
| 24 | // DecoderFunc is a function that creates a new Decoder for given reader |
no outgoing calls