REBOL Programming/typeset?
USAGE:
TYPESET? value
DESCRIPTION:
Returns TRUE if it is this type.
TYPESET? is a function value.
ARGUMENTS
- value -- (Type: any-type)
SOURCE CODE
typeset?: func ["Returns TRUE if it is this type." value [any-type!]][
found? all [block? get/any 'value parse value [any datatype!]]
]
Last modified on 13 November 2012, at 10:45