@@ -78,7 +78,7 @@ module Poly : sig
78
78
(* * Add the corresponding pairs to the table, using {!Hashtbl.add}.
79
79
If a key occurs multiple times in the input, the values are combined
80
80
using [f] in an unspecified order.
81
- @since NEXT_RELEASE *)
81
+ @since 3.3 *)
82
82
83
83
val add_seq : ('a ,'b) Hashtbl .t -> ('a * 'b ) Seq .t -> unit
84
84
(* * Add the corresponding pairs to the table, using {!Hashtbl.add}.
@@ -91,7 +91,7 @@ module Poly : sig
91
91
(* * Add the corresponding pairs to the table.
92
92
If a key occurs multiple times in the input, the values are combined
93
93
using [f] in an unspecified order.
94
- @since NEXT_RELEASE *)
94
+ @since 3.3 *)
95
95
96
96
val of_iter : ('a * 'b ) iter -> ('a ,'b) Hashtbl .t
97
97
(* * From the given bindings, added in order.
@@ -103,7 +103,7 @@ module Poly : sig
103
103
(* * From the given bindings, added in order.
104
104
If a key occurs multiple times in the input, the values are combined
105
105
using [f] in an unspecified order.
106
- @since NEXT_RELEASE *)
106
+ @since 3.3 *)
107
107
108
108
val of_seq : ('a * 'b ) Seq .t -> ('a ,'b) Hashtbl .t
109
109
(* * From the given bindings, added in order.
@@ -116,7 +116,7 @@ module Poly : sig
116
116
(* * From the given bindings, added in order.
117
117
If a key occurs multiple times in the input, the values are combined
118
118
using [f] in an unspecified order.
119
- @since NEXT_RELEASE *)
119
+ @since 3.3 *)
120
120
121
121
val add_iter_count : ('a , int ) Hashtbl .t -> 'a iter -> unit
122
122
(* * [add_iter_count tbl i] increments the count of each element of [i]
@@ -155,7 +155,7 @@ module Poly : sig
155
155
(* * From the given bindings, added in order.
156
156
If a key occurs multiple times in the input, the values are combined
157
157
using [f] in an unspecified order.
158
- @since NEXT_RELEASE *)
158
+ @since 3.3 *)
159
159
160
160
val update : ('a , 'b ) Hashtbl .t -> f :('a -> 'b option -> 'b option ) -> k :'a -> unit
161
161
(* * [update tbl ~f ~k] updates key [k] by calling [f k (Some v)] if
@@ -251,7 +251,7 @@ module type S = sig
251
251
(* * Add the corresponding pairs to the table, using {!Hashtbl.add}.
252
252
If a key occurs multiple times in the input, the values are combined
253
253
using [f] in an unspecified order.
254
- @since NEXT_RELEASE *)
254
+ @since 3.3 *)
255
255
256
256
val add_seq : 'a t -> (key * 'a ) Seq .t -> unit
257
257
(* * Add the corresponding pairs to the table, using {!Hashtbl.add}.
@@ -264,7 +264,7 @@ module type S = sig
264
264
(* * Add the corresponding pairs to the table, using {!Hashtbl.add}.
265
265
If a key occurs multiple times in the input, the values are combined
266
266
using [f] in an unspecified order.
267
- @since NEXT_RELEASE *)
267
+ @since 3.3 *)
268
268
269
269
val of_iter : (key * 'a ) iter -> 'a t
270
270
(* * From the given bindings, added in order.
@@ -276,7 +276,7 @@ module type S = sig
276
276
(* * From the given bindings, added in order.
277
277
If a key occurs multiple times in the input, the values are combined
278
278
using [f] in an unspecified order.
279
- @since NEXT_RELEASE *)
279
+ @since 3.3 *)
280
280
281
281
val of_seq : (key * 'a ) Seq .t -> 'a t
282
282
(* * From the given bindings, added in order.
@@ -289,7 +289,7 @@ module type S = sig
289
289
(* * From the given bindings, added in order.
290
290
If a key occurs multiple times in the input, the values are combined
291
291
using [f] in an unspecified order.
292
- @since NEXT_RELEASE *)
292
+ @since 3.3 *)
293
293
294
294
val add_iter_count : int t -> key iter -> unit
295
295
(* * [add_iter_count tbl i] increments the count of each element of [i]
@@ -328,7 +328,7 @@ module type S = sig
328
328
(* * [of_list l] builds a table from the given list [l] of bindings [k_i -> v_i].
329
329
If a key occurs multiple times in the input, the values are combined
330
330
using [f] in an unspecified order.
331
- @since NEXT_RELEASE *)
331
+ @since 3.3 *)
332
332
333
333
val update : 'a t -> f :(key -> 'a option -> 'a option ) -> k :key -> unit
334
334
(* * [update tbl ~f ~k] updates key [k] by calling [f k (Some v)] if
0 commit comments