definition:
|
getCookies :: IO [(String,String)]
getCookies = do
cookiestring <- getEnv "HTTP_COOKIE"
return $ parseCookies cookiestring
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
documentation:
|
------------------------------------------------------------------------------
--- Gets the cookies sent from the browser for the current CGI script.
--- The cookies are represented in the form of name/value pairs since
--- no other components are important here.
|
failfree:
|
()
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{() |-> _}
|
name:
|
getCookies
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
Prelude.IO [(String, String)]
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|