1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/vlib/compress/gzip
2023-06-13 19:10:27 +03:00
..
gzip_test.v gzip: fix flag location in header (#17140) 2023-01-29 13:27:04 +02:00
gzip.v vlib/compress: correct comments in compress module (#18434) 2023-06-13 19:10:27 +03: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()
}