We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3204c33 commit c484610Copy full SHA for c484610
compiler/lib/build_info.ml
@@ -90,6 +90,10 @@ let parse s =
90
in
91
Some t
92
93
+let to_map : t -> string StringMap.t = Fun.id
94
+
95
+let of_map : string StringMap.t -> t = Fun.id
96
97
exception
98
Incompatible_build_info of
99
{ key : string
compiler/lib/build_info.mli
@@ -34,6 +34,10 @@ val to_string : t -> string
34
35
val parse : string -> t option
36
37
+val to_map : t -> string StringMap.t
38
39
+val of_map : string StringMap.t -> t
40
41
val with_kind : t -> kind -> t
42
43
0 commit comments