Handbook
Glossary
url-decode-hex ( index str -- )
Vocabulary
urls
.
encoding
.
private
Inputs
index
an
object
str
an
object
Outputs
None
Definition
USING:
kernel
make
math
math.parser
sequences
;
IN:
urls.encoding.private
:
url-decode-hex
( index str -- )
2dup
length
2
-
>=
[
2drop
]
[
[
1
+
dup
2
+
]
dip
<slice>
hex>
[
,
]
when*
]
if
;