package transept

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type

Describes a stream

Define the Stream. This module provides basic operations used to read one by one elements from a stream.

module type BUILDER = sig ... end

A Builder has the capability to build a stream from an alternate data. The corresponding type is abstract and strongly linked to the CORE module.

module CORE : sig ... end
module type API = module type of CORE