Rebol Programming/get-path?

USAGE:

edit
GET-PATH? value 

DESCRIPTION:

edit

Returns TRUE if it is this type.

GET-PATH? is a function value.

ARGUMENTS

edit
  • value -- (Type: any-type)

SOURCE CODE

edit
get-path?: func ["Returns TRUE if it is this type." value [any-type!]][
    found? all [path? get/any 'value get-word? pick value 1]
]