package mirage-flow

  1. Overview
  2. Docs
Flow implementations and combinators for MirageOS

Install

dune-project
 Dependency

Authors

Maintainers

Sources

mirage-flow-5.0.0.tbz
sha256=37ca79cae0ed9b270b87712edcb397a5dec4ab39357b28107e00daa6c8553323
sha512=3cf9ebd09ce6e29f9f99a00bf47d2962ccd0e6627b0cdb407538c491480102211bde863d342624cdd4bdb2e1b198b8bf5b2109f881e8113210468ad5b5aa8632

doc/mirage-flow/Mirage_flow/index.html

Module Mirage_flowSource

This module defines the flow signature for MirageOS.

Release v5.0.0

Sourcetype write_error = [
  1. | `Closed
]

The type for generic write errors on flows.

Sourceval pp_write_error : write_error Fmt.t

pp_write_error is the pretty-printer for write errors.

Sourcetype 'a or_eof = [
  1. | `Data of 'a
  2. | `Eof
]

The type for read results on flows.

Sourceval pp_or_eof : 'a Fmt.t -> 'a or_eof Fmt.t

pp_or_eof is the pretty-printer for or_eof values.

Sourcemodule type S = sig ... end

Abstract flow signature.