コード例 #1
0
ファイル: dynamic.cpp プロジェクト: irakov/cocaine-core
bool
dynamic_t::operator!=(const dynamic_t& other) const {
    return !other.apply(equals_visitor(*this));
}
コード例 #2
0
ファイル: dynamic.cpp プロジェクト: irakov/cocaine-core
dynamic_t::dynamic_t(const dynamic_t& other) :
    m_value(null_t())
{
    other.apply(assign_visitor(*this));
}