package hdf5

  1. Overview
  2. Docs
Manages HDF5 files used for storing large amounts of data

Install

Dune Dependency

Authors

Maintainers

Sources

v0.1.5.tar.gz
md5=5e42f0b3f28a7ed8ba84998ee30ff8e7
sha512=17eea72e38f70f92a3b01cd10e0cae8839d8d214b5fa6507f9d435530afe17c88fbdd349157a12eead205e1cf66225d6282199404a3c26841366a57f5c69ff23

doc/hdf5.caml/Hdf5_caml/Struct/Make/Queue/index.html

Module Make.Queue

type e = t
type t
val create : ?capacity:int -> unit -> t

Return a new queue with the given capacity.

val is_empty : t -> bool

Return true if the given queue is empty, false otherwise.

val length : t -> int

Return the number of elements in a queue.

val add : t -> e

Add an element to the end of the queue and returns a pointer to it.

val take : t -> e

Removes and returns the first element of the given queue or raises Queue.Empty if empty.

val peek : t -> e

Returns the first element of the given queue or raises Queue.Empty if empty.

OCaml

Innovation. Community. Security.