init component
This commit is contained in:
17
node_modules/fp-ts/es6/BoundedDistributiveLattice.js
generated
vendored
Normal file
17
node_modules/fp-ts/es6/BoundedDistributiveLattice.js
generated
vendored
Normal file
@@ -0,0 +1,17 @@
|
||||
import { getMinMaxDistributiveLattice } from './DistributiveLattice';
|
||||
// -------------------------------------------------------------------------------------
|
||||
// constructors
|
||||
// -------------------------------------------------------------------------------------
|
||||
/**
|
||||
* @category constructors
|
||||
* @since 2.0.0
|
||||
*/
|
||||
export function getMinMaxBoundedDistributiveLattice(O) {
|
||||
var L = getMinMaxDistributiveLattice(O);
|
||||
return function (min, max) { return ({
|
||||
join: L.join,
|
||||
meet: L.meet,
|
||||
zero: min,
|
||||
one: max
|
||||
}); };
|
||||
}
|
||||
Reference in New Issue
Block a user