package biocaml

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
include module type of Biocaml_unix.Lines
include sig ... end
val item_of_sexp : Sexplib.Sexp.t -> item
val sexp_of_item : item -> Sexplib.Sexp.t
module MakeIO (Future : Biocaml_unix.Future.S) : sig ... end
val of_char_stream : char Stream.t -> item Stream.t

Parse a stream of characters into a stream of lines.

val of_channel : Pervasives.in_channel -> item Stream.t

Get a stream of lines out of an input-channel.

val of_string : string -> item Stream.t

Get a stream of lines out a string

val to_channel : item Stream.t -> Pervasives.out_channel -> unit

Write a stream of lines to an output-channel.

val with_file : string -> f:(Biocaml_unix.Line.t Stream.t -> 'a) -> 'a
module Buffer : sig ... end

Buffer used to parse strings into lines.

module Transform : sig ... end

Transforms from/to Lines.item.

val file_mapper : string -> string -> f:(item -> item list) -> unit