pub trait AbstractDomain {
fn join(&mut self, other: &Self) -> JoinResult;
}Expand description
A trait to be implemented by domains which support a join.
pub trait AbstractDomain {
fn join(&mut self, other: &Self) -> JoinResult;
}A trait to be implemented by domains which support a join.