package bio_io

  1. Overview
  2. Docs
module type S = sig ... end

An input channel for reading (biological) records.

module type In_channel_input_record = sig ... end

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

module Make (M : In_channel_input_record) : S with type t := M.t with type record := M.record

Functor for making Record_in_channel modules.