Handbook
Glossary
header-value>string ( value -- string )
Vocabulary
http
Inputs
value
an
object
Outputs
string
an
object
Definition
USING:
arrays
calendar
calendar.format
combinators
kernel
present
sequences
;
IN:
http
:
header-value>string
( value -- string )
{
{
[
dup
timestamp?
]
[
timestamp>http-string
]
}
{
[
dup
array?
]
[
[
header-value>string
]
map
"; "
join
]
}
[
present
]
}
cond
;