REBOL Programming/typeset?

< REBOL Programming

USAGE:

TYPESET? value 

DESCRIPTION:

Returns TRUE if it is this type.

TYPESET? is a function value.

ARGUMENTS

SOURCE CODE

typeset?: func ["Returns TRUE if it is this type." value [any-type!]][
    found? all [block? get/any 'value parse value [any datatype!]]
]
This article is issued from Wikibooks. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.