跳转到内容

Rebol 编程/get-path?

来自维基教科书,开放书籍,开放世界
GET-PATH? value 

如果它是这种类型,则返回 TRUE。

GET-PATH? 是一个函数值。

  • -- (类型:任意类型)

源代码

[编辑 | 编辑源代码]
get-path?: func ["Returns TRUE if it is this type." value [any-type!]][
    found? all [path? get/any 'value get-word? pick value 1]
]
华夏公益教科书