A Writer takes data written to it and writes the compressed form of that data to an underlying writer (see NewWriter).
| 940 | // A Writer takes data written to it and writes the compressed |
| 941 | // form of that data to an underlying writer (see NewWriter). |
| 942 | type Writer struct { |
| 943 | d compressor |
| 944 | dict []byte |
| 945 | } |
| 946 | |
| 947 | // Write writes data to w, which will eventually write the |
| 948 | // compressed form of data to its underlying writer. |
nothing calls this directly
no outgoing calls
no test coverage detected