Handbook
Glossary
unparse-host ( url -- string )
Vocabulary
http
.
client
.
private
Inputs
url
an
object
Outputs
string
an
object
Definition
USING:
accessors
kernel
math.parser
sequences
;
IN:
http.client.private
:
unparse-host
( url -- string )
dup
default-port?
[
host>>
]
[
[
host>>
]
[
port>>
number>string
]
bi
":"
glue
]
if
;