1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/vlib/compress/zlib
2023-02-08 20:37:04 +02:00
..
README.md all: change optional to result in most of the libraries (#16123) 2022-10-20 22:14:33 +03:00
zlib_test.v all: change optional to result in most of the libraries (#16123) 2022-10-20 22:14:33 +03:00
zlib.v v: forbid function parameter names, shadowing imported module names (#17210) 2023-02-08 20:37:04 +02:00

Description:

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

Examples:

import compress.zlib

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