ByteHandle is a byte buffer(made from []byte) that implements ReadOpenCloser interface
| 107 | // ByteHandle is a byte buffer(made from []byte) that implements |
| 108 | // ReadOpenCloser interface |
| 109 | ByteHandle struct { |
| 110 | b []byte |
| 111 | *bytes.Reader |
| 112 | } |
| 113 | |
| 114 | nopOpener struct{ io.ReadCloser } |
| 115 | WriterMulti struct{ writers []io.Writer } |
nothing calls this directly
no outgoing calls
no test coverage detected