Trait alga::general::JoinSemilattice [] [src]

pub trait JoinSemilattice: Sized {
    fn join(&self, other: &Self) -> Self;
}

A set where every two elements have a suppremum (i.e. smallest upper bound).

Required Methods

Returns the join (aka. supremum) of two values.

Implementors