版博士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.

BoundedJoinSemilattice.d.ts 340 B

123456789101112131415
  1. /**
  2. * A `BoundedJoinSemilattice` must satisfy the following laws in addition to `JoinSemilattice` laws:
  3. *
  4. * - `a ∨ 0 <-> a`
  5. *
  6. * @since 2.0.0
  7. */
  8. import { JoinSemilattice } from './JoinSemilattice'
  9. /**
  10. * @category model
  11. * @since 2.0.0
  12. */
  13. export interface BoundedJoinSemilattice<A> extends JoinSemilattice<A> {
  14. readonly zero: A
  15. }