Rebol Programming/any-path?
USAGE:
ANY-PATH? value
DESCRIPTION:
Return TRUE if value is any type of path.
ANY-PATH? is a function value.
ARGUMENTS
- value -- (Type: any-type)
SOURCE CODE
any-path?: func [
"Return TRUE if value is any type of path."
value [any-type!]
][
found? find any-path! type? get/any 'value
]