Handbook
Glossary
html-close? ( string -- ? )
Vocabulary
modern
Inputs
string
an
object
Outputs
?
an
object
Definition
USING:
combinators.short-circuit
kernel
math
sequences
unicode
;
IN:
modern
:
html-close?
( string -- ? )
{
[
"</"
head?
]
[
length
2
>=
]
[
rest
strict-upper?
not
]
[
[
blank?
]
any?
not
]
[
">"
tail?
]
}
1&&
;