Rebol Programming/scalar?
USAGE:
editSCALAR? value
DESCRIPTION:
editReturn TRUE if value is any type of scalar.
SCALAR? is a function value.
ARGUMENTS
edit- value -- (Type: any-type)
SOURCE CODE
editscalar?: func [ "Return TRUE if value is any type of scalar." value [any-type!] ][ found? find scalar! type? get/any 'value ]