AppendZstdBytes appends zstd src to dst and returns the resulting dst.
(dst, src []byte)
| 133 | |
| 134 | // AppendZstdBytes appends zstd src to dst and returns the resulting dst. |
| 135 | func AppendZstdBytes(dst, src []byte) []byte { |
| 136 | return AppendZstdBytesLevel(dst, src, CompressZstdDefault) |
| 137 | } |
| 138 | |
| 139 | // WriteUnzstd writes unzstd p to w and returns the number of uncompressed |
| 140 | // bytes written to w. |
searching dependent graphs…