ocaml-reins 0.1a-5 source package in Ubuntu

Changelog

ocaml-reins (0.1a-5) unstable; urgency=medium


  * Team upload
  * debian/patches:
    + Fix test-suite with new oUnit (Closes: #713499)
    + Fix version in META
  * Remove myself from Uploaders
  * Update Vcs-*
  * Add ocaml-findlib to Suggests

 -- Stéphane Glondu <email address hidden>  Thu, 30 Jan 2014 14:56:07 +0100

Upload details

Uploaded by:
Debian OCaml Maintainers
Uploaded to:
Sid
Original maintainer:
Debian OCaml Maintainers
Architectures:
any
Section:
ocaml
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Trusty release universe libdevel

Downloads

File Size SHA-256 Checksum
ocaml-reins_0.1a-5.dsc 2.1 KiB 46d7c5dcb1c3ce3c84cd32c610f902d723c97058222ed41bb3a8713488d38f92
ocaml-reins_0.1a.orig.tar.gz 95.1 KiB 3f3fa0ac27d35abc4000184733f2a8deabd2f87310078fc343951ecb37d15a76
ocaml-reins_0.1a-5.debian.tar.xz 4.0 KiB 120ac796d68eacab368be0b465ba5a8033e261c15a7d59958f01b8ab8de3412e

No changes file available.

Binary packages built by this source

libreins-ocaml-dev: data structure library for OCaml

 The OCaml Reins data structure library consists of the following
 persistent implementations:
  * Lists (singly, O(1) catenable, Acyclic doubly linked,
           random access)
  * Sets/Maps (AVL, Red/Black, Patricia, Splay)
  * Heaps (Binomial, Skew-Binomial)
 .
 All of the implementations conform to a unified signature for each
 data type. Also, each data types include zipper style cursor
 interfaces and persistent, bi-directional cursor based iterators.
 The library also includes a set of standard modules to hoist the base
 typs into the module level (Int, Bool, etc...) as well as a
 collection of functor combinators to minimize boilerplate (e.g., for
 constructing compare or to_string functions). Finally, a
 quickcheck-like random testing framework is included and each data
 type supports the necessary "gen" function to generate a random
 instance of the type.