(ctxv any)
| 125 | } |
| 126 | |
| 127 | func nonblockingWriteZstd(ctxv any) { |
| 128 | ctx := ctxv.(*compressCtx) |
| 129 | zw := acquireRealZstdWriter(ctx.w, ctx.level) |
| 130 | zw.Write(ctx.p) //nolint:errcheck |
| 131 | releaseRealZstdWriter(zw, ctx.level) |
| 132 | } |
| 133 | |
| 134 | // AppendZstdBytes appends zstd src to dst and returns the resulting dst. |
| 135 | func AppendZstdBytes(dst, src []byte) []byte { |
nothing calls this directly
no test coverage detected
searching dependent graphs…