UMinho Haskell Libraries (1.0)ContentsIndex
PrettyPrint.Tables.LrcPrelude
Synopsis
type INT = Int
type BOOL = Bool
type STR = String
type CHAR = Char
type REAL = Float
lrc_INTtoREAL :: Int -> Float
data BTree a
= Fork a (BTree a) (BTree a)
| Nil
type MAP a b = (BTree (a, b), b)
lrc_empty_map :: a -> MAP b a
lrc_map_single_update :: (Eq a, Ord a) => a -> b -> MAP a b -> MAP a b
lrc_map_application :: (Eq a, Ord a) => a -> MAP a b -> b
lrc_map_in :: (Eq a, Ord a) => a -> MAP a b -> Bool
lrc_map_update :: (Eq a, Ord a) => MAP a b -> MAP a b -> MAP a b
lrc_string_index :: String -> Int -> Char
lrc_string_sub :: String -> Int -> Int -> String
repeatCHAR :: a -> Int -> [a]
Produced by Haddock version 0.6