| 8 | ) |
| 9 | |
| 10 | type decoder struct { |
| 11 | in io.Reader |
| 12 | order binary.ByteOrder |
| 13 | pos int |
| 14 | fds []int |
| 15 | |
| 16 | // The following fields are used to reduce memory allocs. |
| 17 | conv *stringConverter |
| 18 | buf []byte |
| 19 | d float64 |
| 20 | y [1]byte |
| 21 | } |
| 22 | |
| 23 | // newDecoder returns a new decoder that reads values from in. The input is |
| 24 | // expected to be in the given byte order. |
nothing calls this directly
no outgoing calls
no test coverage detected