跳转到内容

Rebol 编程/any-object?

来自维基教科书,开放的书籍,开放的世界
ANY-OBJECT? value 

如果值是任何类型的对象,则返回 TRUE。

ANY-OBJECT? 是一个函数值。

  • value -- (类型: any-type)

源代码

[编辑 | 编辑源代码]
any-object?: func [
    "Return TRUE if value is any type of object." 
    value [any-type!]
][
    found? find any-object! type? get/any 'value
]
华夏公益教科书