< Rebol Programming

USAGE:

ANY-OBJECT? value 

DESCRIPTION:

Return TRUE if value is any type of object.

ANY-OBJECT? is a function value.

ARGUMENTS

  • value -- (Type: any-type)

SOURCE CODE

any-object?: func [
    "Return TRUE if value is any type of object." 
    value [any-type!]
][
    found? find any-object! type? get/any 'value
]
This article is issued from Wikibooks. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.