跳转到内容

Rebol 编程/reduce

来自维基教科书,开放世界中的开放书籍
REDUCE value /only words 

评估表达式或代码块表达式并返回结果。

REDUCE 是一个原生值。

  • -- (类型:任何)
  • /only -- 仅评估词语和路径,不评估函数
    • 词语 -- 可选的未评估词语(关键字)(类型:代码块 无)

源代码

[编辑 | 编辑源代码]
reduce: native[
    {Evaluates an expression or block expressions and returns the result.} 
    value 
    /only "Only evaluate words and paths, not functions" 
    words [block! none!] "Optional words that are not evaluated (keywords)"
]
华夏公益教科书