< Rebol Programming

USAGE:

GET-FACE face 

DESCRIPTION:

Returns the primary value of a face.

GET-FACE is a function value.

ARGUMENTS

  • face -- (Type: any)

SOURCE CODE

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
    ]
]
This article is issued from Wikibooks. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.