|
|
|
|
| Synopsis |
|
|
|
| Documentation |
|
| mimes :: Map String String |
|
| splitWith :: (a -> Bool) -> [a] -> [[a]] |
|
| getExt :: String -> String |
|
| emptyLine :: String |
|
| endl :: String |
|
| chooseMime :: String -> Maybe String |
|
| emptyResponse :: Response String |
|
| noSuchUrl :: Show a => Bool -> a -> Response String |
|
| number :: String |
|
| year :: String |
|
| month :: String |
|
| day :: String |
|
| capitalize :: String -> String |
|
| commas :: [String] -> String |
|
| replaceChar :: Eq a => a -> a -> [a] -> [a] |
|
| replaceplus :: String -> String |
|
| spliteq :: String -> (String, String) |
|
| trim :: String -> String |
|
| decodePairs :: String -> [(String, String)] |
|
| decodePair :: String -> (String, String) |
|
| urlencode :: [UrlParam] -> String |
|
| escapePair :: UrlParam -> String |
|
| esc :: String -> String |
|
| readFile' :: String -> IO String |
| Strict version of System.IO.readFile
|
|
| buf_size :: Int |
|
| lazySlurp :: ForeignPtr Word8 -> Int -> Int -> IO String |
|
| days :: Int -> TimeDiff |
| An opposite to lookup: update value in assosiative list
update :: (Eq a) => a -> t -> [(a, t)] -> [(a, t)]
update k v [] = [(k,v)]
update k v ((x,y):ps) | k==x = (k,v):ps
| otherwise = (x,y):(update k v ps)
|
|
| addDays :: Int -> ClockTime -> ClockTime |
|
| expirationDate :: IO String |
|
| myUrl :: HttpRequest -> String |
| Get URL from Request
|
|
| o :: Monad m => (t -> m a) -> (a -> m b) -> t -> m b |
|
| ioPipe :: Monad m => [a -> b -> m b] -> a -> b -> m b |
|
| ioPipe' :: Monad m => [b -> m b] -> b -> m b |
|
| normal :: String -> String |
|
| pipelist :: [String] -> String |
|
| unpipelist :: String -> [String] |
|
| Produced by Haddock version 2.4.2 |