跳转到内容

Rebol 编程/unbind

来自维基教科书,开放书籍,开放世界
UNBIND words /deep 

从上下文中解除绑定单词。

UNBIND 是一个原生值。

  • words -- 单词块或单个单词(返回)(类型:块 任何-单词)
  • /deep -- 包含嵌套块

源代码

[编辑 | 编辑源代码]
unbind: native[
    "Unbinds words from context." 
    words [block! any-word!] "A block of words or single word (returned)" 
    /deep "Include nested blocks"
]
华夏公益教科书