package odoc

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type ('a, 'e) result = ('a, 'e) Result.result =
  1. | Ok of 'a
  2. | Error of 'e

Re-export for compatibility with 4.02

type msg = [
  1. | `Msg of string
]
val (>>=) : ('a, 'e) result -> ('a -> ('b, 'e) result) -> ('b, 'e) result