http-monad-0.1.1.4: Monad abstraction for HTTP allowing lazy transfer and non-I/O simulation
Copyright(c) 2009 Henning Thielemann
LicenseBSD
Stabilityexperimental
Portabilitynon-portable (not tested)
Safe HaskellSafe-Inferred
LanguageHaskell98

Network.Monad.Body

Description

 

Documentation

class Monoid body => C body where Source #

Methods

fromString :: String -> body Source #

toString :: body -> String Source #

isLineTerm :: body -> Bool Source #

isEmpty :: body -> Bool Source #

Instances

Instances details
C ByteString Source # 
Instance details

Defined in Network.Monad.Body

C ByteString Source # 
Instance details

Defined in Network.Monad.Body

CharType char => C [char] Source # 
Instance details

Defined in Network.Monad.Body

Methods

fromString :: String -> [char] Source #

toString :: [char] -> String Source #

isLineTerm :: [char] -> Bool Source #

isEmpty :: [char] -> Bool Source #

class CharType char where Source #

Methods

fromChar :: Char -> char Source #

toChar :: char -> Char Source #

Instances

Instances details
CharType Char Source # 
Instance details

Defined in Network.Monad.Body