package protocol-9p

  1. Overview
  2. Docs
An implementation of the 9p protocol in pure OCaml

Install

dune-project
 Dependency

Authors

Maintainers

Sources

protocol-9p-2.1.0.tbz
sha256=28bace4c680708495bf3f8c936ade387870887c39c507318ecab456bf8824845
sha512=5c4a421211e84ddc2a4588d3d7d1979de83e32e8e5cde926ea0c93272720b67f009ead0ad51d087a62bffbad884390f02e030752c435f442115ee82ce932b741

doc/protocol-9p/Protocol_9p/Error/index.html

Module Protocol_9p.ErrorSource

Common error reporting functions

Sourcetype error = [
  1. | `Msg of string
    (*

    A fatal error condition; the string should be logged

    *)
]
Sourcetype 'a t = ('a, error) result
Sourceval return : 'a -> ('a, error) result
Sourceval error_msg : ('a, Format.formatter, unit, ('b, [> `Msg of string ]) result) format4 -> 'a
Sourceval (>>=) : ('a, 'b) result -> ('a -> ('c, 'b) result) -> ('c, 'b) result