package GuaCaml

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type !'a tree =
  1. | Leaf of 'a
  2. | Node of 'a tree list
type (!'a, !'b) atree =
  1. | ALeaf of 'b
  2. | ANode of 'a * ('a, 'b) atree list
type (!'a, !'b) atrees = ('a, 'b) atree list
type !'a aatree = ('a, 'a) atree
type !'a aatrees = 'a aatree list
type stree = string tree
type !'a to_stree = 'a -> stree
type !'a of_stree = stree -> 'a
type !'a btree =
  1. | BLeaf of 'a
  2. | BNode of 'a btree * 'a btree
type (!'leaf, !'link) gnext =
  1. | GLeaf of 'leaf