BTree
data BTree a Source #
Constructors
Instances
Methods
(==) :: BTree a -> BTree a -> Bool
(/=) :: BTree a -> BTree a -> Bool
readsPrec :: Int -> ReadS (BTree a)
readList :: ReadS [BTree a]
readPrec :: ReadPrec (BTree a)
readListPrec :: ReadPrec [BTree a]
showsPrec :: Int -> BTree a -> ShowS
show :: BTree a -> String
showList :: [BTree a] -> ShowS
size :: BTree a -> Integer Source #
height :: BTree a -> Integer Source #
fromList :: [a] -> BTree a Source #
make :: [a] -> BTree a Source #
searchTree :: Ord a => [a] -> BTree a Source #
flatten :: BTree a -> [a] Source #