v/vlib/compress/gzip
2023-11-25 10:02:51 +03:00
..
samples compress.gzip: change the endianness for validation to conform to the gzip file specification (fix #19839) (#19849) 2023-11-12 11:30:05 +02:00
gzip.v all: unwrap const() blocks 2023-11-25 10:02:51 +03:00
gzip_test.v compress.gzip: change the endianness for validation to conform to the gzip file specification (fix #19839) (#19849) 2023-11-12 11:30:05 +02:00
read_gz_files_test.v compress.gzip: change the endianness for validation to conform to the gzip file specification (fix #19839) (#19849) 2023-11-12 11:30:05 +02:00
README.md all: change optional to result in most of the libraries (#16123) 2022-10-20 22:14:33 +03:00

Description:

compress.gzip is a module that assists in the compression and decompression of binary data using gzip compression

Examples:

import compress.gzip

fn main() {
	uncompressed := 'Hello world!'
	compressed := gzip.compress(uncompressed.bytes())!
	decompressed := gzip.decompress(compressed)!
	assert decompressed == uncompressed.bytes()
}