package lascar

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

A basic implementation of n-ary trees

module type Arg = sig ... end

Input signature of the functor Tree.Make.

module type S = sig ... end

Output signature of the functor Tree.Make.

module Make (A : Arg) : S with type node = A.node and type edge = A.edge

Functor building an implementation of the tree structure