package vhd-format

  1. Overview
  2. Docs
type (!'ok, !'err) t =
  1. | Ok of 'ok
  2. | Error of 'err
val return : 'a -> ('a, 'b) t
val bind : ('a, 'b) t -> ('a -> ('c, 'b) t) -> ('c, 'b) t
val (>>=) : ('a, 'b) t -> ('a -> ('c, 'b) t) -> ('c, 'b) t
val fail : 'a -> ('b, 'a) t
OCaml

Innovation. Community. Security.