Craft3e-0.2.0.1: Code for Haskell: the Craft of Functional Programming, 3rd ed.
Safe HaskellSafe-Inferred
LanguageHaskell2010

Tree

Documentation

data Tree a Source #

treeVal :: Tree a -> a Source #

insTree :: Ord a => a -> Tree a -> Tree a Source #

delete :: Ord a => a -> Tree a -> Tree a Source #

minTree :: Ord a => Tree a -> Maybe a Source #

elemT :: Ord a => a -> Tree a -> Bool Source #