Tree
data Tree a Source #
nil :: Tree a Source #
isNil :: Tree a -> Bool Source #
isNode :: Tree a -> Bool Source #
leftSub :: Tree a -> Tree a Source #
rightSub :: Tree a -> 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 #