package hardcaml

  1. Overview
  2. Docs
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

Source file map.ml

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
module Map_intf_in_this_directory = Map_intf

open! Import

include Map_intf_in_this_directory

include Base.Map

module Make (Key : Key) = struct
  module Key = Key

  type 'a t = 'a Base.Map.M(Key).t [@@deriving sexp_of]

  let empty = Base.Map.empty (module Key)
end
OCaml

Innovation. Community. Security.