package either

  1. Overview
  2. Docs
Compatibility Either module

Install

dune-project
 Dependency

Authors

Maintainers

Sources

either-1.0.0.tbz
sha256=bf674de3312dee7b7215f07df1e8a96eb3d679164b8a918cdd95b8d97e505884
sha512=147854c09f897dd028b18a9f19acea8666107aaa7b1aab3c92f568af531364f57298edcaf3897d74246d3857d52e9bfb7ad0fc39220d988d9f14694ca1d5e9ed

doc/src/either/either.ml.html

Source file either.ml

1
2
3
4
# 1 "src/either-as-alias.ml"
type ('a, 'b) t = ('a, 'b) Stdlib.Either.t = Left of 'a | Right of 'b

include (Stdlib.Either : Either_intf.S with type ('a, 'b) t := ('a, 'b) t)