package ocaml-base-compiler

  1. Overview
  2. Docs
Official release 4.13.0

Install

Dune Dependency

Authors

Maintainers

Sources

4.13.0.tar.gz
sha256=d3eaf17fcd8722827ae15c560a419ee52cf7e066f1d6cb80df621bfd3a17d61c

doc/stdlib/Stdlib/Ephemeron/GenHashTable/MakeSeeded/argument-1-H/index.html

Parameter MakeSeeded.H

type t

keys

type 'a container

contains keys and the associated data

val hash : int -> t -> int
val equal : 'a container -> t -> equal

equality predicate used to compare a key with the one in a container. Can return EDead if the keys in the container are dead

val create : t -> 'a -> 'a container

create key data creates a container from some initials keys and one data

val get_key : 'a container -> t option

get_key cont returns the keys if they are all alive

val get_data : 'a container -> 'a option

get_data cont returns the data if it is alive

val set_key_data : 'a container -> t -> 'a -> unit

set_key_data cont modifies the key and data

val check_key : 'a container -> bool

check_key cont checks if all the keys contained in the data are alive

OCaml

Innovation. Community. Security.