Manipulate the lines of a file.
module Biocaml_lines: sigtype item = Biocaml_internal_utils.Line.t
module MakeIO:functor (Future:Future.S) ->sigval read :Future.Reader.t -> Biocaml_lines.item Future.Pipe.Reader.tval write :Future.Writer.t ->
Biocaml_lines.item Future.Pipe.Reader.t -> unit Future.Deferred.tval write_file :?perm:int ->
?append:bool ->
string -> Biocaml_lines.item Future.Pipe.Reader.t -> unit Future.Deferred.tend
include ??
val of_char_stream : char Biocaml_internal_utils.Stream.t ->
item Biocaml_internal_utils.Stream.tval of_channel : Pervasives.in_channel -> item Biocaml_internal_utils.Stream.tval to_channel : item Biocaml_internal_utils.Stream.t ->
Pervasives.out_channel -> unitmodule Buffer: sigtype t
exception No_next_line
next_line_exn.val make : ?filename:string -> unit -> t filename is used only
for error reporting; it should be set to the name of the file,
if any, from which you will feed the buffer.val feed_line : t -> Biocaml_lines.item -> unitval feed_string : t -> string -> unitval queued_lines : t -> intval is_empty : t -> boolnext_line returns
None, is_empty p = true means that the content did not end
with a complete line.val peek_line : t -> Biocaml_lines.item optionval next_line : t -> Biocaml_lines.item optionval next_line_exn : t -> Biocaml_lines.item No_next_line if there is no line
to return.val current_position : t -> Biocaml_internal_utils.Pos.tval contents : t -> Biocaml_lines.item list * string optionendmodule Transform: sigLines.item.val string_to_item : unit -> (string, Biocaml_lines.item) Biocaml_transform.t val group2 : unit ->
(Biocaml_lines.item,
(Biocaml_lines.item * Biocaml_lines.item, [> `premature_end_of_input ])
Biocaml_internal_utils.Result.t)
Biocaml_transform.t val item_to_string : ?buffer:[ `clear of int | `reset of int ] ->
unit -> (Biocaml_lines.item, string) Biocaml_transform.t Line.items to strings (in other
words a buffer with the lines plus their end-of-line
character).val make : ?name:string ->
?filename:string ->
next:(Biocaml_lines.Buffer.t ->
[ `not_ready
| `output of ('b, 'errnext) Biocaml_internal_utils.Result.t ]) ->
on_error:([ `incomplete_input of
Biocaml_internal_utils.Pos.t * string list * string option
| `next of 'errnext ] -> 'err) ->
unit ->
(string, ('b, 'err) Biocaml_internal_utils.Result.t) Biocaml_transform.t val make_merge_error : ?name:string ->
?filename:string ->
next:(Biocaml_lines.Buffer.t ->
[ `not_ready
| `output of
('a,
[> `incomplete_input of
Biocaml_internal_utils.Pos.t * string list * string option ]
as 'b)
Biocaml_internal_utils.Result.t ]) ->
unit ->
(string, ('a, 'b) Biocaml_internal_utils.Result.t) Biocaml_transform.t make but merge `incomplete_input _ with the
errors of ~next (which must be polymorphic variants).endval item_of_sexp : Sexplib.Sexp.t -> item val sexp_of_item : item -> Sexplib.Sexp.tval item_of_sexp : Sexplib.Sexp.t -> item val sexp_of_item : item -> Sexplib.Sexp.tnext_line_exn.filename is used only
for error reporting; it should be set to the name of the file,
if any, from which you will feed the buffer.next_line returns
None, is_empty p = true means that the content did not end
with a complete line.No_next_line if there is no line
to return.contents will return
([], None).Lines.item.Line.items to strings (in other
words a buffer with the lines plus their end-of-line
character).make but merge `incomplete_input _ with the
errors of ~next (which must be polymorphic variants).end