package accessor_base

  1. Overview
  2. Docs

Source file accessor_maybe_bound.ml

1
2
3
4
5
6
7
8
open! Base
open! Import

type 'a t = 'a Maybe_bound.t =
  | Incl of 'a
  | Excl of 'a
  | Unbounded
[@@deriving accessors]