@arthurgubaidullin/nx-embed-dependencies
Version:
This plugin for [Nx](https://nx.dev) helps injecting local dependencies into a package.
19 lines (18 loc) • 597 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.getMinMaxDistributiveLattice = void 0;
var Ord_1 = require("./Ord");
// -------------------------------------------------------------------------------------
// constructors
// -------------------------------------------------------------------------------------
/**
* @category constructors
* @since 2.0.0
*/
function getMinMaxDistributiveLattice(O) {
return {
meet: (0, Ord_1.min)(O),
join: (0, Ord_1.max)(O)
};
}
exports.getMinMaxDistributiveLattice = getMinMaxDistributiveLattice;