Questions tagged «reduce»

Reduce是MapReduce计算中的第二步,它是较大的可伸缩,可并行化算法的组成部分。


4
减少数组在Swift中设置
我正在尝试将对象数组简化为Swift中的集合,这是我的代码: objects.reduce(Set<String>()) { $0.insert($1.URL) } 但是,我得到一个错误: Type of expression is ambiguous without more context. 我不明白问题是什么,因为URL的类型肯定是String。有任何想法吗?
78 arrays  swift  set  reduce 

6
JavaScript数组.reduce与async / await
似乎在将async / await与.reduce()合并时遇到一些问题,如下所示: const data = await bodies.reduce(async(accum, current, index) => { const methodName = methods[index] const method = this[methodName] if (methodName == 'foo') { current.cover = await this.store(current.cover, id) console.log(current) return { ...accum, ...current } } return { ...accum, ...method(current.data) } }, {}) console.log(data) 在完成之前data记录该对象。this.store 我知道您可以利用Promise.all异步循环,但这是否适用于.reduce()?
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.