ocaml-base-compiler
Official release 4.11.2
1024" x-on:close-sidebar="sidebar=window.innerWidth > 1024 && true">
package ocaml-base-compiler
-
dynlink
-
ocamlbytecomp
-
ocamlcommon
-
ocamlmiddleend
-
ocamloptcomp
-
odoc_info
-
raw_spacetime_lib
-
-
stdlib
-
str
-
threads
-
unix
Legend:
Library
Module
Module type
Parameter
Class
Class type
Library
Module
Module type
Parameter
Class
Class type
Library stdlib
type ('a, 'b) t = ( 'a, 'b ) Hashtbl.t
val create : ?random:bool -> int -> ( 'a, 'b ) t
val clear : ( 'a, 'b ) t -> unit
val reset : ( 'a, 'b ) t -> unit
val add : ( 'a, 'b ) t -> key:'a -> data:'b -> unit
val find : ( 'a, 'b ) t -> 'a -> 'b
val find_opt : ( 'a, 'b ) t -> 'a -> 'b option
val find_all : ( 'a, 'b ) t -> 'a -> 'b list
val mem : ( 'a, 'b ) t -> 'a -> bool
val remove : ( 'a, 'b ) t -> 'a -> unit
val replace : ( 'a, 'b ) t -> key:'a -> data:'b -> unit
val iter : f:( key:'a -> data:'b -> unit ) -> ( 'a, 'b ) t -> unit
val filter_map_inplace :
f:( key:'a -> data:'b -> 'b option ) ->
( 'a, 'b ) t ->
unit
val fold : f:( key:'a -> data:'b -> 'c -> 'c ) -> ( 'a, 'b ) t -> init:'c -> 'c
val length : ( 'a, 'b ) t -> int
type statistics = Hashtbl.statistics
val stats : ( 'a, 'b ) t -> statistics
module type HashedType = Hashtbl.HashedType
module type SeededHashedType = Hashtbl.SeededHashedType
module type S = sig ... end
module type SeededS = sig ... end
module Make
(H : HashedType) :
S with type key = H.t and type 'a t = 'a Hashtbl.Make(H).t
module MakeSeeded
(H : SeededHashedType) :
SeededS with type key = H.t and type 'a t = 'a Hashtbl.MakeSeeded(H).t
ON THIS PAGE
No table of contents