gzlib

Package Version Hex Docs

gleam add gzlib
import gzlib

pub fn main() {
  let data = <<1, 2, 3, 4, 5>>
  let compressed_data = gzlib.compress(data)
  let more_compressed_data = gzlib.compress_with_level(data, gzlib.max_compression)
  let crc = gzlib.crc32(data)
}

Further documentation can be found at https://hexdocs.pm/gzlib.

Development

gleam run   # Run the project
gleam test  # Run the tests
gleam shell # Run an Erlang shell
Search Document