gpt4 book ai didi

nim-lang - nim 中 reduce 的等价物是什么?

转载 作者:行者123 更新时间:2023-12-04 02:58:01 26 4
gpt4 key购买 nike

是否有内置的 proc 相当于 Python reduce 或 Javascript Array.reduce

最佳答案

sequtils 模块中有模板foldlfoldr。示例:

import sequtils

proc factorial(n: int): int =
foldl(1..n, a * b, 1)

echo factorial(10)

作为模板,它们不接受 proc 参数,而是内联表达式,其中 ab 是操作数。该模板适用于具有 items 迭代器的任何类型的集合,例如数组、序列或范围(如上例所示)。

关于nim-lang - nim 中 reduce 的等价物是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51965511/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com