@@ -80,7 +80,7 @@ val read_chunks_seq : ?size:int -> in_channel -> string Seq.t
80
80
81
81
val read_chunks_iter : ?size : int -> in_channel -> string iter
82
82
(* * Read the channel's content into chunks of size at most [size]
83
- @since NEXT_RELEASE *)
83
+ @since 3.6 *)
84
84
85
85
val read_line : in_channel -> string option
86
86
(* * Read a line from the channel. Returns [None] if the input is terminated.
@@ -99,7 +99,7 @@ val read_lines_seq : in_channel -> string Seq.t
99
99
100
100
val read_lines_iter : in_channel -> string iter
101
101
(* * Read all lines.
102
- @since NEXT_RELEASE *)
102
+ @since 3.6 *)
103
103
104
104
val read_lines_l : in_channel -> string list
105
105
(* * Read all lines into a list. *)
@@ -146,7 +146,7 @@ val write_lines : out_channel -> string gen -> unit
146
146
147
147
val write_lines_iter : out_channel -> string iter -> unit
148
148
(* * Write every string on the output, followed by "\n".
149
- @since NEXT_RELEASE *)
149
+ @since 3.6 *)
150
150
151
151
val write_lines_seq : out_channel -> string Seq .t -> unit
152
152
(* * Write every string on the output, followed by "\n".
@@ -265,7 +265,7 @@ module File : sig
265
265
266
266
val walk_iter : t -> walk_item iter
267
267
(* * Like {!walk} but with an imperative iterator.
268
- @since NEXT_RELEASE *)
268
+ @since 3.6 *)
269
269
270
270
val walk_l : t -> walk_item list
271
271
(* * Like {!walk} but returns a list (therefore it's eager and might
@@ -274,7 +274,7 @@ module File : sig
274
274
275
275
val walk_seq : t -> walk_item Seq .t
276
276
(* * Like {!walk} but returns a Seq
277
- @since NEXT_RELEASE *)
277
+ @since 3.6 *)
278
278
279
279
val show_walk_item : walk_item -> string
280
280
0 commit comments