package um-abt

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type 'a t

The type of the operator, usually represented as a sum type.

Each operator should be have the form

Foo of 'a * 'a * ... * 'a

Where the free variables 'a are arguments to the operator Foo.

val map : ('a -> 'b) -> 'a t -> 'b t
val equal : ('a -> 'a -> bool) -> 'a t -> 'a t -> bool
val fold : ('a -> 'b -> 'a) -> 'a -> 'b t -> 'a
val to_string : string t -> string