Warning: Reason support is experimental. We are looking for beta-tester and contributors.

Module Deriving_Enum

module Deriving_Enum : sig..end

module type Enum = sig..end
module Defaults : functor (E : sig      type a      val numbering : (a * int) listend) -> 
  Enumwith type a = E.a
module Defaults' : functor (E : sig      type a      val from_enum : a -> int      val to_enum : int -> aend) -> 
  functor (B : Deriving_Bounded.Bounded     with type a = E.a) ->
  Enumwith type a = B.a
module Enum_bool : Enumwith type a = bool
module Enum_char : Enumwith type a = char
module Enum_int : Enumwith type a = int
module Enum_unit : Enumwith type a = unit