cookbook-2.1.0.0: Tiered general-purpose libraries with domain-specific applications.

Safe HaskellSafe-Inferred

Cookbook.Recipes.DataStructures

Documentation

data Tree a Source

Constructors

Empty 
Branch a (Tree a) (Tree a) 

Instances

Show a => Show (Tree a)