package biocaml

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
val unzip : ?format:[ `gzip | `raw ] -> ?zlib_buffer_size:int -> unit -> (string, (string, [> Error.unzip ]) Core.result) Tfxm.t

Create a transform that uncompresses a stream. The default format is `raw (i.e. only apply the "deflate" algorithm to the stream); `gzip means that the transform must first skip a gzip header.

val zip : ?format:[ `gzip | `raw ] -> ?level:int -> ?zlib_buffer_size:int -> unit -> (string, string) Tfxm.t

Create a transform that writes compressed data.