package ocaml-base-compiler

  1. Overview
  2. Docs
Official release 4.09.1

Install

Dune Dependency

Authors

Maintainers

Sources

4.09.1.tar.gz
sha256=3e3146e0c876d14bdd574cb543e782feb2b07a7cabd054a8f322ef40de61943a

doc/stdlib/Stdlib/Ephemeron/Kn/index.html

Module Ephemeron.Kn

type ('k, 'd) t

an ephemeron with an arbitrary number of keys of the same type

val create : int -> ('k, 'd) t
val get_key : ('k, 'd) t -> int -> 'k option
val get_key_copy : ('k, 'd) t -> int -> 'k option
val set_key : ('k, 'd) t -> int -> 'k -> unit
val unset_key : ('k, 'd) t -> int -> unit
val check_key : ('k, 'd) t -> int -> bool
val blit_key : ('k, _) t -> int -> ('k, _) t -> int -> int -> unit
val get_data : ('k, 'd) t -> 'd option
val get_data_copy : ('k, 'd) t -> 'd option
val set_data : ('k, 'd) t -> 'd -> unit
val unset_data : ('k, 'd) t -> unit
val check_data : ('k, 'd) t -> bool
val blit_data : ('k, 'd) t -> ('k, 'd) t -> unit
module Make (H : Hashtbl.HashedType) : S with type key = H.t array

Functor building an implementation of a weak hash table

module MakeSeeded (H : Hashtbl.SeededHashedType) : SeededS with type key = H.t array

Functor building an implementation of a weak hash table. The seed is similar to the one of Hashtbl.MakeSeeded.

OCaml

Innovation. Community. Security.