package dune-private-libs

  1. Overview
  2. Docs
Private libraries of Dune

Install

Dune Dependency

Authors

Maintainers

Sources

dune-2.5.1.tbz
sha256=8f77d3a87f208e0d7cccaa1c48c4bb1bb87d62d07c3f25e9b8ba298e028ce52b
sha512=f209f12ced10c1abf8782bdb0143f4cec77795f7174d2cc75130afb1e01550b01f2f77b9e3ec4888efdad83d2f9878d179b39126f824f4e522f3ef4da34bf27e

doc/dune-private-libs.stdune/Stdune/Io/index.html

Module Stdune.Io

IO operations.

val close_in : in_channel -> unit
val close_out : out_channel -> unit
val close_both : (in_channel * out_channel) -> unit
val input_lines : in_channel -> string list
val copy_channels : in_channel -> out_channel -> unit

This function is not safe to use from multiple threads, even if operating on unrelated channels because it uses a statically-allocated global buffer.

val read_all : in_channel -> string
type path = Path.t
val open_in : ?binary:bool -> path -> in_channel
val open_out : ?binary:bool -> path -> out_channel
val with_file_in : ?binary:bool -> path -> f:(in_channel -> 'a) -> 'a
val with_file_out : ?binary:bool -> path -> f:(out_channel -> 'a) -> 'a
val with_lexbuf_from_file : path -> f:(Lexing.lexbuf -> 'a) -> 'a
val lines_of_file : path -> string list
val read_file : ?binary:bool -> path -> string
val write_file : ?binary:bool -> path -> string -> unit
val compare_files : path -> path -> Ordering.t
val compare_text_files : path -> path -> Ordering.t
val write_lines : ?binary:bool -> path -> string list -> unit
val copy_file : ?chmod:(int -> int) -> src:path -> dst:path -> unit -> unit
val setup_copy : ?chmod:(int -> int) -> src:path -> dst:path -> unit -> in_channel * out_channel
val file_line : path -> int -> string
val file_lines : path -> start:int -> stop:int -> (string * string) list
module String_path : sig ... end
OCaml

Innovation. Community. Security.