LTree-0.1: Tree with only leaves carrying the data.

Portabilityportable
Stabilityexperimental
MaintainerRahul Gopinath (gopinath@eecs.oregonstate.edu)

Data.Trees.LTree

Description

This Haskell library provides an implementation of a tree data type with content in the leaves.

Synopsis

Documentation

data Tree c Source

| The LTree c is a tree structure with content in the leaves.

Constructors

Leaf 

Fields

content :: c
 
Node 

Fields

trees :: [Tree c]