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

PortabilityPortable (Standalone - ghc)
StabilityStable
Maintainernathanpisarski@gmail.com
Safe HaskellSafe-Inferred

Cookbook.Recipes.DataStructures

Description

Library for defining high-level generic data structures, most commonly containers. Specialized data types for specialized projects should go into Projects. It's sort of why it exists.

Synopsis

Documentation

data Tree a Source

Implementation of a binary tree.

Constructors

Empty 
Branch a (Tree a) (Tree a) 

Instances

Show a => Show (Tree a)