package either

  1. Overview
  2. Docs
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

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)