Trait differential_dataflow::collection::least_upper_bound::LeastUpperBound [] [src]

pub trait LeastUpperBound: PartialOrd {
    fn max() -> Self;
    fn least_upper_bound(&self, &Self) -> Self;
}

Partially ordered elements with a least upper bound.

Required Methods

fn max() -> Self

A maximum value for the type.

fn least_upper_bound(&self, &Self) -> Self

The least element greater or equal to each argument.

Implementors