Rebol Programming/component?

USAGE: edit

COMPONENT? name 

DESCRIPTION: edit

Returns specific REBOL component info if enabled.

COMPONENT? is a function value.

ARGUMENTS edit

  • name -- (Type: word)

SOURCE CODE edit

component?: func [
    "Returns specific REBOL component info if enabled." 
    name [word!]
][
    find system/components name
]