REBOL Programming/any-object?

      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
      ]
      
      Last modified on 27 October 2012, at 22:19