< Rebol Programming
USAGE:
REFLECT value field
DESCRIPTION:
Returns definition-related details about a value.
REFLECT is a function value.
ARGUMENTS
- value -- (Type: any-type)
- field -- Such as: spec body words values title etc. (Type: word)
(SPECIAL ATTRIBUTES)
- catch
SOURCE CODE
reflect: func [
"Returns definition-related details about a value."
[catch]
value [any-type!]
field [word!] "Such as: spec body words values title etc."
][throw-on-error [
switch/default field [
spec [spec-of :value]
body [body-of :value]
words [words-of :value]
values [values-of :value]
types [types-of :value]
title [title-of :value]
] [
cause-error 'script 'invalid-arg field
]
]]
This article is issued from Wikibooks. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.