[Compose] 17. List comprehensions with Applicative Functors
Posted Answer1215
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[Compose] 17. List comprehensions with Applicative Functors相关的知识,希望对你有一定的参考价值。
We annihilate the need for the ol‘ nested for
loop using Applicatives.
For example we have this kind of nested loop code:
for(x in xs){ for(x in ys){ for(z in zs){ } } }
We can refactor it by using List comprehension:
const {List} = Immutable;
const res1 = List.of(x => x).ap(List([1,2,3])); console.log(res1) // List [ 1,2,3 ]
const res1 = List.of(x => y=> `${x} - ${y}`) .ap(List([‘teeshirt‘, ‘sweater‘])) .ap(List([‘large‘, ‘medium‘, ‘small‘])); console.log(res1) //List [ "teeshirt - large", "teeshirt - medium", "teeshirt - small", "sweater - large", "sweater - medium", "sweater - small" ]
以上是关于[Compose] 17. List comprehensions with Applicative Functors的主要内容,如果未能解决你的问题,请参考以下文章
移动后iOS上的cordova-plugin-media-with-compression似乎无法播放音频文件