Source File
errors.go
Belonging Package
github.com/pierrec/lz4/v4/internal/lz4errors
package lz4errorstype Error stringfunc ( Error) () string { return string() }const (ErrInvalidSourceShortBuffer Error = "lz4: invalid source or destination buffer too short"ErrInvalidFrame Error = "lz4: bad magic number"ErrInternalUnhandledState Error = "lz4: unhandled state"ErrInvalidHeaderChecksum Error = "lz4: invalid header checksum"ErrInvalidBlockChecksum Error = "lz4: invalid block checksum"ErrInvalidFrameChecksum Error = "lz4: invalid frame checksum"ErrOptionInvalidCompressionLevel Error = "lz4: invalid compression level"ErrOptionClosedOrError Error = "lz4: cannot apply options on closed or in error object"ErrOptionInvalidBlockSize Error = "lz4: invalid block size"ErrOptionNotApplicable Error = "lz4: option not applicable"ErrWriterNotClosed Error = "lz4: writer not closed")
![]() |
The pages are generated with Golds v0.8.2. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |