UNPKG

@arthurgubaidullin/nx-embed-dependencies

Version:

This plugin for [Nx](https://nx.dev) helps injecting local dependencies into a package.

18 lines (17 loc) 552 B
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 }); }; }