darcs-2.8.0: a distributed, interactive, smart revision control system

Safe HaskellSafe-Infered

URL.Request

Synopsis

Documentation

data Q a Source

Constructors

Q [a] [a] 

readQ :: Q a -> Maybe (a, Q a)Source

insertQ :: a -> Q a -> Q aSource

pushQ :: a -> Q a -> Q aSource

deleteQ :: Eq a => a -> Q a -> Q aSource

elemQ :: Eq a => a -> Q a -> BoolSource

data Priority Source

Constructors

High 
Low 

Instances

data ConnectionError Source

Data type to represent a connection error. The following are the codes from libcurl which map to each of the constructors: * 6 -> CouldNotResolveHost : The remote host was not resolved. * 7 -> CouldNotConnectToServer : Failed to connect() to host or proxy. * 28 -> OperationTimeout: the specified time-out period was reached.