Trait ena::constraint::Lattice [] [src]

pub trait Lattice {
    type Element: Clone + Eq;
    fn lub(&self,
       elem1: &Self::Element,
       elem2: &Self::Element)
       -> Option<Self::Element>; }

Associated Types

Required Methods

Implementors