跳转到内容

Rebol 编程/scalar?

来自维基教科书,自由的教科书
SCALAR? value 

如果值是任何类型的标量,则返回 TRUE。

SCALAR? 是一个函数值。

  • value -- (类型: 任何类型)

源代码

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