/**
* A `BoundedJoinSemilattice` must satisfy the following laws in addition to `JoinSemilattice` laws:
*
* - `a ∨ 0 <-> a`
*
* @since 2.0.0
*/
import { JoinSemilattice } from './JoinSemilattice'
/**
* @category model
* @since 2.0.0
*/
export interface BoundedJoinSemilattice extends JoinSemilattice {
readonly zero: A
}