Handbook
Glossary
misparsed-url? ( url -- url' )
Vocabulary
http
.
client
.
private
Inputs
url
an
object
Outputs
url'
an
object
Definition
USING:
accessors
combinators.short-circuit
kernel
;
IN:
http.client.private
:
misparsed-url?
( url -- url' )
{
[
protocol>>
not
]
[
host>>
not
]
[
path>>
]
}
1&&
;