当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Julia foldl方法用法及代码示例


用法:

foldl(op, itr; [init])

reduce ,但保证左关联性。如果提供,关键字参数 init 将只使用一次。通常,有必要提供init 来处理空集合。

例子

julia> foldl(=>, 1:4)
((1 => 2) => 3) => 4

julia> foldl(=>, 1:4; init=0)
(((0 => 1) => 2) => 3) => 4

相关用法


注:本文由纯净天空筛选整理自julialang.org 大神的英文原创作品 Base.foldl — Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。