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

16 lines
339 B

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