Rebol Programming/typeset?

USAGE:Edit

TYPESET? value 

DESCRIPTION:Edit

Returns TRUE if it is this type.

TYPESET? is a function value.

ARGUMENTSEdit

  • value -- (Type: any-type)

SOURCE CODEEdit

typeset?: func ["Returns TRUE if it is this type." value [any-type!]][
    found? all [block? get/any 'value parse value [any datatype!]]
]