之前的主题 https://v2ex.com/t/743574
吸取了大家的建议,做了一个更好用的管道出来。根据测试,性能损耗在纳秒级,我个人觉得应该可以忽略。
还是老样子,不多说,直接看代码。仓库在 https://github.com/abersheeran/cool
from functools import reduce
from cool import F, FF
range(10) | F(filter, lambda x: x % 2) | F(sum) == 25
(1, 2) | FF(lambda x, y: x + y) == 3
range(10) | F(reduce, lambda x, y: x + y) == 45
range(10) | F(reduce, lambda x, y: x + y, ..., 10) == 55
square = F(pow, ..., 2)
range(10) | F(map, square) | F(sum) == 285
这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。
V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。
V2EX is a community of developers, designers and creative people.