mirror of
https://github.com/c-cube/ocaml-containers.git
synced 2025-12-06 11:15:31 -05:00
CCIO: use attributes for warnings
This commit is contained in:
parent
e106432e21
commit
2241a25d9e
1 changed files with 2 additions and 0 deletions
|
|
@ -69,6 +69,7 @@ val with_in : ?mode:int -> ?flags:open_flag list ->
|
|||
val read_chunks : ?size:int -> in_channel -> string gen
|
||||
(** Read the channel's content into chunks of size [size].
|
||||
@deprecated use {!read_chunks_gen} instead. *)
|
||||
[@@ocaml.deprecated "use read_chunks_gen"]
|
||||
|
||||
val read_chunks_gen : ?size:int -> in_channel -> string gen
|
||||
(** Read the channel's content into chunks of size [size].
|
||||
|
|
@ -82,6 +83,7 @@ val read_line : in_channel -> string option
|
|||
val read_lines : in_channel -> string gen
|
||||
(** Read all lines. The generator should be traversed only once.
|
||||
@deprecated use {!read_lines_gen} instead. *)
|
||||
[@@ocaml.deprecated "use read_lines_gen"]
|
||||
|
||||
val read_lines_gen : in_channel -> string gen
|
||||
(** Read all lines. The generator should be traversed only once.
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue