path-separator? ( ch -- ? )


Vocabulary
io.pathnames

Inputs
cha code point


Outputs
?a boolean


Word description
Tests if the code point is a platform-specific path separator.

Examples
On Unix:
USING: io.pathnames prettyprint ; CHAR: / path-separator? .
t


Definition