package bio_io

  1. Overview
  2. Docs

The basic in channel-like functions plus input_record function needed to make a Record_in_channel module.

type t
type record
val equal : t -> t -> Base.bool
val stdin : t
val close : t -> Base.unit

These two functions differ from the Stdio.In_channel in that they don't take a binary argument.

val create : Base.string -> t
val with_file : Base.string -> f:(t -> 'a) -> 'a
val input_record_exn : t -> record Base.option