文件名称:monoid:JavaScript 中的简单幺半群工厂
文件大小:6KB
文件格式:ZIP
更新时间:2024-06-22 20:31:54
JavaScript
幺半群 JavaScript 中的简单幺半群工厂。 与兼容。 通过提供标识值和二元函数轻松定义列表缩减。 获得一种使用concatAll减少幺半群列表的免费方法。 例子 制作一个幺半群并concat两个幺半群值。 var M = require ( 'monoid' ) ; var Any = M . Monoid ( { identity : false , binary : function ( v1 , v2 ) { return v1 || v2 ; } } ) ; // Use the monoid instance method Any ( true ) . append ( Any ( false ) ) ; // => Any(true) // Or the free function provided by the Monoid mo
【文件预览】:
monoid-master
----.gitignore(22B)
----README.md(2KB)
----.jshintrc(959B)
----package.json(744B)
----src()
--------monoid.js(1KB)
--------binary.js(432B)
----spec()
--------monoid-spec.js(3KB)
--------support()
--------binary-spec.js(746B)
--------helpers()
----.travis.yml(123B)