package biocaml

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
include module type of struct include Biocaml_unix.Lines end
val sexp_of_item : item -> Ppx_sexp_conv_lib.Sexp.t
val item_of_sexp : Ppx_sexp_conv_lib.Sexp.t -> item
include sig ... end
val of_char_stream : char Stream.t -> item Stream.t

Parse a stream of characters into a stream of lines.

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 -> Core_kernel.Out_channel.t -> unit

Write a stream of lines to an output-channel.

val with_file : string -> f:(Biocaml_unix.Line.t Stream.t -> 'a) -> 'a
module Transform = Biocaml_unix.Lines.Transform