Rebol 编程/bind
外观
< Rebol 编程
BIND words known-word /copy
将单词绑定到指定的上下文。
BIND 是一个原生值。
- words -- 一个单词块或单个单词。(类型:块 任何单词)
- known-word -- 对目标上下文的引用。(类型:任何单词 对象 端口)
- /copy -- 在绑定前深度复制块。
bind: native[
"Binds words to a specified context."
words [block! any-word!] "A block of words or single word."
known-word [any-word! object! port!] "A reference to the target context."
/copy "Deep copies block before binding it."
]