就像我们在Java流中执行流水线一样,如何在JavaScript中执行 *** 作?

就像我们在Java流中执行流水线一样,如何在JavaScript中执行 *** 作?,第1张

就像我们在Java流中执行流水线一样,如何在JavaScript中执行 *** 作?

也许以后(或永远不会),您可以使用实际的 实验
管道运算符

|>
,其语法如下:

expression |> function

通过将函数作为单独的函数并为每个管道迭代流数组,可以实现所需的结果。

仅在FF中有效。 从版本58开始:此功能位于

--enable-pipeline-operator
编译标志的后面。

const    a = x => { x = x * x; console.log("map1=" + x); return x; },    b = x => { x = x * 3; console.log("map2=" + x); return x; },    c = x => console.log("forEach=" + x)var nums = [1, 2, 3, 4, 5, 6];nums.forEach(v => v |> a |> b |> c);

管道功能相同(功能组合启用管道),并关闭了所需功能。

const    pipe = (...functions) => input => functions.reduce((acc, fn) => fn(acc), input),    a = x => { x = x * x; console.log("map1=" + x); return x; },    b = x => { x = x * 3; console.log("map2=" + x); return x; },    c = x => console.log("forEach=" + x)var nums = [1, 2, 3, 4, 5, 6],    pipeline = pipe(a, b, c);nums.forEach(pipeline);


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5427014.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-11
下一篇 2022-12-11

发表评论

登录后才能评论

评论列表(0条)

保存