Unmarshal unmarshals "data" into "v". "v" must be a pointer value.
(data []byte, v interface{})
| 11 | // Unmarshal unmarshals "data" into "v". |
| 12 | // "v" must be a pointer value. |
| 13 | Unmarshal(data []byte, v interface{}) error |
| 14 | // NewDecoder returns a Decoder which reads byte sequence from "r". |
| 15 | NewDecoder(r io.Reader) Decoder |
| 16 | // NewEncoder returns an Encoder which writes bytes sequence into "w". |
no outgoing calls