FixIO Documentation

Back to summary

Global functions

Compression

import "io/gzip";

function zcompress(arr: Byte[]): Byte[]
function zcompress(arr: Byte[], off: Integer, len: Integer): Byte[]
Compresses the buffer.
function zuncompress(arr: Byte[]): Byte[]
function zuncompress(arr: Byte[], off: Integer, len: Integer): Byte[]
Decompresses the buffer.
function gzip_compress(arr: Byte[]): Byte[]
function gzip_compress(arr: Byte[], off: Integer, len: Integer): Byte[]
Compresses the buffer.
function gzip_uncompress(arr: Byte[]): Byte[]
function gzip_uncompress(arr: Byte[], off: Integer, len: Integer): Byte[]
Decompresses the buffer.