in include/AbstractDomain.h [507:522]
void meet_like_operation_with(const Derived& other,
std::function<void()> operation) {
if (is_bottom() || other.is_top()) {
return;
}
if (other.is_bottom()) {
set_to_bottom();
return;
}
if (is_top()) {
m_kind = other.m_kind;
m_value = other.m_value;
return;
}
operation();
}