ycomb:全能的Y组合器

时间:2024-06-05 07:07:11
【文件属性】:

文件名称:ycomb:全能的Y组合器

文件大小:2KB

文件格式:ZIP

更新时间:2024-06-05 07:07:11

JavaScript

Y组合器 Y组合器可用于创建具有递归行为的函数。 // recursive factorial let fact = n => n <= 1 ? n : n * fact ( n - 1 ) // factorial using the Y-combinator let fact = Y ( f => n => n <= 1 ? n : n * f ( n - 1 ) ) 在了解有关Y-combinator的更多信息 安装 npm install --save ycomb 用 import Y from 'ycomb' 将函数传递给带有函数参数的Y 如果要递归,请调用函数参数。 例如,请检查 ,该函数的行为类似于while循环(具有一些额外的好处,如currying和return值)。 执照 麻省理工学院:copyright:Kevin Lanni


【文件预览】:
ycomb-master
----index.js(81B)
----test.js(344B)
----package.json(669B)
----.gitignore(13B)
----lib()
--------index.js(372B)
----README.md(806B)

网友评论