Module Stdlib.MoreLabels
Extra labeled libraries.
This meta-module provides labelized versions of the Hashtbl, Map and Set modules.
This module is intended to be used through open MoreLabels which replaces Hashtbl, Map, and Set with their labeled counterparts.
For example:
ocaml
open MoreLabels
Hashtbl.iter ~f:(fun ~key ~data -> g key data) tableocaml
module Hashtbl : sig ... endreasonml
module Hashtbl: { ... };Hash tables and hash functions.
ocaml
module Map : sig ... endreasonml
module Map: { ... };Association tables over ordered types.
ocaml
module Set : sig ... endreasonml
module Set: { ... };Sets over ordered types.