Biocaml_ez.Linesinclude module type of Biocaml_unix.Linestype item = Biocaml_unix.Line.tval sexp_of_item : item -> Ppx_sexp_conv_lib.Sexp.tval item_of_sexp : Ppx_sexp_conv_lib.Sexp.t -> itemmodule MakeIO (Future : Biocaml_unix.Future.S) : sig ... endinclude sig ... endval write_file :
?perm:int ->
?append:bool ->
string ->
item Biocaml_unix.Future_unix.Pipe.Reader.t ->
unit Biocaml_unix.Future_unix.Deferred.tval of_char_stream : char Stream.t -> item Stream.tParse a stream of characters into a stream of lines.
val of_channel : Core_kernel.In_channel.t -> item Stream.tGet a stream of lines out of an input-channel.
val of_string : string -> item Stream.tGet a stream of lines out a string
val to_channel : item Stream.t -> Core_kernel.Out_channel.t -> unitWrite a stream of lines to an output-channel.
val with_file : string -> f:(Biocaml_unix.Line.t Stream.t -> 'a) -> 'amodule Buffer : sig ... endBuffer used to parse strings into lines.
module Transform : sig ... endTransforms from/to Lines.item.