package nx

  1. Overview
  2. Docs
N-dimensional arrays for OCaml

Install

dune-project
 Dependency

Authors

Maintainers

Sources

raven-1.0.0.alpha3.tbz
sha256=96d35ce03dfbebd2313657273e24c2e2d20f9e6c7825b8518b69bd1d6ed5870f
sha512=90c5053731d4108f37c19430e45456063e872b04b8a1bbad064c356e1b18e69222de8bfcf4ec14757e71f18164ec6e4630ba770dbcb1291665de5418827d1465

doc/nx.zip/Zlib/index.html

Module ZlibSource

Sourceexception Error of string * string
Sourceval compress : ?level:int -> ?header:bool -> (bytes -> int) -> (bytes -> int -> unit) -> unit
Sourceval compress_direct : ?level:int -> ?header:bool -> (bytes -> int -> unit) -> (bytes -> int -> int -> unit) * (unit -> unit)
Sourceval uncompress : ?header:bool -> (bytes -> int) -> (bytes -> int -> unit) -> unit
Sourcetype stream
Sourcetype flush_command =
  1. | Z_NO_FLUSH
  2. | Z_SYNC_FLUSH
  3. | Z_FULL_FLUSH
  4. | Z_FINISH
Sourceval deflate_init : int -> bool -> stream
Sourceval deflate : stream -> bytes -> int -> int -> bytes -> int -> int -> flush_command -> bool * int * int
Sourceval deflate_string : stream -> string -> int -> int -> bytes -> int -> int -> flush_command -> bool * int * int
Sourceval deflate_end : stream -> unit
Sourceval inflate_init : bool -> stream
Sourceval inflate : stream -> bytes -> int -> int -> bytes -> int -> int -> flush_command -> bool * int * int
Sourceval inflate_string : stream -> string -> int -> int -> bytes -> int -> int -> flush_command -> bool * int * int
Sourceval inflate_end : stream -> unit
Sourceval update_crc : int32 -> bytes -> int -> int -> int32
Sourceval update_crc_string : int32 -> string -> int -> int -> int32