Handbook
Glossary
quotable? ( ch -- ? )
ASCII
Prev:
control? ( ch -- ? )
Next:
ascii? ( ch -- ? )
Vocabulary
ascii
Inputs
ch
a character
Outputs
?
a
boolean
Word description
Tests for characters which may appear in a Factor string literal without escaping.
Definition
USING:
combinators.short-circuit
kernel
sequences
;
IN:
ascii
:
quotable?
( ch -- ? )
{
[
printable?
]
[
"\"\\"
member?
not
]
}
1&&
;
inline