Versions in this module Expand all Collapse all v0 v0.3.1 Aug 21, 2024 Changes in this version + const DefaultDictSize + const MaxDictSize + const MaxMemberSize + const MinDictSize + var ErrInvalidMagic = errors.New("lzip: invalid magic number") + type DictSizeTooLargeError struct + DictSize uint32 + func (e *DictSizeTooLargeError) Error() string + type DictSizeTooSmallError struct + DictSize uint32 + func (e *DictSizeTooSmallError) Error() string + type InvalidCRCError struct + CRC uint32 + func (e *InvalidCRCError) Error() string + type InvalidDataSizeError struct + DataSize uint64 + func (e *InvalidDataSizeError) Error() string + type InvalidMemberSizeError struct + MemberSize uint64 + func (e *InvalidMemberSizeError) Error() string + type MemberSizeTooLargeError struct + MemberSize uint64 + func (e *MemberSizeTooLargeError) Error() string + type Reader struct + func NewReader(r io.Reader) (*Reader, error) + func (z *Reader) Read(p []byte) (n int, err error) + type UnknownVersionError struct + Version uint8 + func (e *UnknownVersionError) Error() string + type UnsupportedVersionError struct + Version uint8 + func (e *UnsupportedVersionError) Error() string + type Writer struct + func NewWriter(w io.Writer) *Writer + func NewWriterOptions(w io.Writer, opt *WriterOptions) (*Writer, error) + func (z *Writer) Close() error + func (z *Writer) Write(p []byte) (int, error) + type WriterOptions struct + DictSize uint32 + func (o *WriterOptions) Verify() error