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