-
Notifications
You must be signed in to change notification settings - Fork 1
/
prtree.mli
42 lines (37 loc) · 1.85 KB
/
prtree.mli
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
(**************************************************************************)
(* *)
(* Copyright (C) Jean-Christophe Filliatre *)
(* *)
(* This software is free software; you can redistribute it and/or *)
(* modify it under the terms of the GNU Library General Public *)
(* License version 2.1, with the special exception on linking *)
(* described in file LICENSE. *)
(* *)
(* This software is distributed in the hope that it will be useful, *)
(* but WITHOUT ANY WARRANTY; without even the implied warranty of *)
(* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. *)
(* *)
(**************************************************************************)
(** This module provides a generic ASCII pretty-printing function for trees,
in a way similar to what the Unix commands `tree` or `pstree` do:
```
bash-+-emacs-+-emacsserver
| `-ispell
|-pstree
`-xdvi.bin
```
*)
(** A tree structure is given as an abstract type [t] together with a
decomposition function [decomp] returning the label of the node and
the list of the children trees. Leaves are nodes with no child (i.e.
an empty list). *)
module type Tree = sig
type t
val decomp : t -> string * t list
end
(** The functor [Make] takes a tree structure [T] as argument and provides a
single function [print: formatter -> T.t -> unit] to print a tree on a
given formatter. *)
module Make : functor (T : Tree) -> sig
val print : Format.formatter -> T.t -> unit
end