HaTeX-3.10.0.0: The Haskell LaTeX library.

Safe HaskellSafe-Inferred

Text.LaTeX.Packages.Trees

Contents

Description

Tree definition with some class instances.

Synopsis

Tree

data Tree a Source

Tree datatype.

Constructors

Leaf a

Leafs are non-empty.

Node (Maybe a) [Tree a]

Node values are optional.