[−][src]Trait gf::support::lattice::Meet
A meet semilattice that has a bottom and a top element.
Blanket implementations
A blanket implementation is provided for 2- and 3-tuples of Meet
implementors.
Required methods
Loading content...Provided methods
fn meet_cmp(a: &Self, b: &Self) -> Option<Ordering>
Compare a
and b
using the induced partial order ⊑.
The default implementation uses meet
to compare the elements.
Implementations on Foreign Types
impl<A, B> Meet for (A, B) where
A: Meet,
B: Meet,
[src]
A: Meet,
B: Meet,
impl<A, B, C> Meet for (A, B, C) where
A: Meet,
B: Meet,
C: Meet,
[src]
Loading content...A: Meet,
B: Meet,
C: Meet,