package containers

  1. Overview
  2. Docs
A modular, clean and powerful extension of the OCaml standard library

Install

Dune Dependency

Authors

Maintainers

Sources

v2.8.1.tar.gz
md5=d84e09c5d0abc501aa17cd502e31a038
sha512=8b832f4ada6035e80d81be0cfb7bdffb695ec67d465ed6097a144019e2b8a8f909095e78019c3da2d8181cc3cd730cd48f7519e87d3162442562103b7f36aabb

doc/containers.data/CCPersistentHashtbl/index.html

Module CCPersistentHashtblSource

Persistent hash-table on top of OCaml's hashtables

Almost as efficient as the regular Hashtbl type, but with a persistent interface (rewinding changes to get back in the past history). This is mostly useful for backtracking-like uses, or forward uses (never using old values).

This module is not thread-safe.

Sourcetype 'a sequence = ('a -> unit) -> unit
Sourcetype 'a printer = Format.formatter -> 'a -> unit
Sourcetype 'a equal = 'a -> 'a -> bool
Sourcemodule type HashedType = sig ... end

Signature of such a hashtable

Sourcemodule type S = sig ... end

Implementation

Sourcemodule Make (H : HashedType) : S with type key = H.t
OCaml

Innovation. Community. Security.