跳转到内容

Rebol 编程/get-face

来自维基教科书,开放的书籍,开放的世界
GET-FACE face 

返回面的主要值。

GET-FACE 是一个函数值。

  • face -- (类型:任何)

源代码

[编辑 | 编辑源代码]
get-face: func [
    "Returns the primary value of a face." 
    face 
    /local access
][
    if all [
        access: get in face 'access 
        in access 'get-face*
    ] [
        access/get-face* face
    ]
]
华夏公益教科书