MeetSemiLattice

interface MeetSemiLattice<T : MeetSemiLattice<T>> : PartialOrder<T>

A set that supports binary greatest lower bounds.

Functions

lessThanOrEqualTo
Link copied to clipboard
abstract fun lessThanOrEqualTo(that: T): Boolean

Returns true if this is ordered before that.

meet
Link copied to clipboard
abstract fun meet(that: T): T

The greatest lower bound of this and that.

Inheritors

Lattice
Link copied to clipboard