版博士V2.0程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

преди 1 година
1234567891011121314
  1. import { max, min } from './Ord';
  2. // -------------------------------------------------------------------------------------
  3. // constructors
  4. // -------------------------------------------------------------------------------------
  5. /**
  6. * @category constructors
  7. * @since 2.0.0
  8. */
  9. export function getMinMaxDistributiveLattice(O) {
  10. return {
  11. meet: min(O),
  12. join: max(O)
  13. };
  14. }