Rebol Programming/typeset?
USAGE:
editTYPESET? value
DESCRIPTION:
editReturns TRUE if it is this type.
TYPESET? is a function value.
ARGUMENTS
edit- value -- (Type: any-type)
SOURCE CODE
edittypeset?: func ["Returns TRUE if it is this type." value [any-type!]][ found? all [block? get/any 'value parse value [any datatype!]] ]