Rebol 程式設計/words-of
外觀
WORDS-OF value
返回函式或物件的單詞副本。
WORDS-OF 是一個函式值。
- value -- (型別:任何)
words-of: func [
{Returns a copy of the words of a function or object.}
value
][
case [
object? :value [bind remove first :value :value]
any-function? :value [first :value]
'else [cause-error 'script 'cannot-use reduce ['reflect type? :value]]
]
]