Handbook
Glossary
url-quotable? ( ch -- ? )
Furnace framework
»
URL objects
»
URL encoding and decoding
Prev:
url-decode ( str -- decoded )
Next:
assoc>query ( assoc -- str )
Vocabulary
urls
.
encoding
Inputs
ch
a character
Outputs
?
a
boolean
Word description
Tests if a character be used without URL-encoding in a URL.
Definition
USING:
ascii
combinators.short-circuit
sequences
;
IN:
urls.encoding
:
url-quotable?
( ch -- ? )
{
[
letter?
]
[
LETTER?
]
[
digit?
]
[
"-._~/:"
member?
]
}
1||
;
foldable
flushable