definition: |
formatCookie :: (String,String,[CookieParam]) -> String formatCookie (name,value,params) = "Set-Cookie: " ++ name ++ "=" ++ string2urlencoded value ++ concatMap (\p -> "; " ++ formatCookieParam p) params |
demand: |
argument 1 |
deterministic: |
deterministic operation |
documentation: |
-- Shows the cookie in standard syntax: |
failfree: |
<FAILING> |
indeterministic: |
referentially transparent operation |
infix: |
no fixity defined |
iotype: |
{({(,,)}) |-> _} |
name: |
formatCookie |
precedence: |
no precedence defined |
result-values: |
_ |
signature: |
(String, String, [CookieParam]) -> String |
solution-complete: |
operation might suspend on free variables |
terminating: |
possibly non-terminating |
totally-defined: |
possibly non-reducible on same data term |