@@ -211,7 +211,7 @@ module type S = sig
211
211
212
212
val to_iter : 'a t -> (key * 'a ) iter
213
213
(* * Iterate on bindings in the table.
214
- @since NEXT_RELEASE *)
214
+ @since 2.8 *)
215
215
216
216
val to_seq : 'a t -> (key * 'a ) sequence
217
217
(* * Iterate on values in the table.
@@ -220,11 +220,11 @@ module type S = sig
220
220
221
221
val add_iter : 'a t -> (key * 'a ) iter -> unit
222
222
(* * Add the corresponding pairs to the table, using {!Hashtbl.add}.
223
- @since NEXT_RELEASE *)
223
+ @since 2.8 *)
224
224
225
225
val add_std_seq : 'a t -> (key * 'a ) Seq .t -> unit
226
226
(* * Add the corresponding pairs to the table, using {!Hashtbl.add}.
227
- @since NEXT_RELEASE *)
227
+ @since 2.8 *)
228
228
229
229
val add_seq : 'a t -> (key * 'a ) sequence -> unit
230
230
(* * Add the corresponding pairs to the table, using {!Hashtbl.add}.
@@ -234,11 +234,11 @@ module type S = sig
234
234
235
235
val of_iter : (key * 'a ) iter -> 'a t
236
236
(* * From the given bindings, added in order.
237
- @since NEXT_RELEASE *)
237
+ @since 2.8 *)
238
238
239
239
val of_std_seq : (key * 'a ) Seq .t -> 'a t
240
240
(* * From the given bindings, added in order.
241
- @since NEXT_RELEASE *)
241
+ @since 2.8 *)
242
242
243
243
val of_seq : (key * 'a ) sequence -> 'a t
244
244
(* * From the given bindings, added in order.
@@ -249,13 +249,13 @@ module type S = sig
249
249
(* * [add_iter_count tbl i] increments the count of each element of [i]
250
250
by calling {!incr}. This is useful for counting how many times each
251
251
element of [i] occurs.
252
- @since NEXT_RELEASE *)
252
+ @since 2.8 *)
253
253
254
254
val add_std_seq_count : int t -> key Seq .t -> unit
255
255
(* * [add_seq_count tbl seq] increments the count of each element of [seq]
256
256
by calling {!incr}. This is useful for counting how many times each
257
257
element of [seq] occurs.
258
- @since NEXT_RELEASE *)
258
+ @since 2.8 *)
259
259
260
260
val add_seq_count : int t -> key sequence -> unit
261
261
(* * [add_seq_count tbl seq] increments the count of each element of [seq]
@@ -267,11 +267,11 @@ module type S = sig
267
267
268
268
val of_iter_count : key iter -> int t
269
269
(* * Like {!add_seq_count}, but allocates a new table and returns it.
270
- @since NEXT_RELEASE *)
270
+ @since 2.8 *)
271
271
272
272
val of_std_seq_count : key Seq .t -> int t
273
273
(* * Like {!add_seq_count}, but allocates a new table and returns it.
274
- @since NEXT_RELEASE *)
274
+ @since 2.8 *)
275
275
276
276
val of_seq_count : key sequence -> int t
277
277
(* * Like {!add_seq_count}, but allocates a new table and returns it.
0 commit comments