mtree-0.0: Tree with Meta and Content parameters

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

Data.Trees.MTree

Description

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

Synopsis

Documentation

data MTree m c Source

| The MTree m c is a tree structure with metadata in the nodes | and metadata and content in the leaves.

Constructors

MLeaf 

Fields

meta :: m
 
content :: c
 
MNode 

Fields

meta :: m
 
trees :: [MTree m c]