当前位置: 首页>>代码示例>>C++>>正文


C++ type_info::hash_code方法代码示例

本文整理汇总了C++中std::type_info::hash_code方法的典型用法代码示例。如果您正苦于以下问题:C++ type_info::hash_code方法的具体用法?C++ type_info::hash_code怎么用?C++ type_info::hash_code使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在std::type_info的用法示例。


在下文中一共展示了type_info::hash_code方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。

示例1: is_column

    bool table::is_column(const std::string& column_name,
                          const std::type_info& type) const
    {
        assert(has_column(column_name));

        const auto& c = m_columns.at(column_name);
        assert(c->type_hash());
        return (*c->type_hash()) == type.hash_code();
    }
开发者ID:GOPRO1955,项目名称:tables,代码行数:9,代码来源:table.cpp

示例2: TLASSERT

std::pair<size_t,size_t> 
fnc_registry::lookup_location(const std::type_info& t_info ) {
    auto tid = t_info.hash_code();
    for (size_t i = 0; i < impl->registry[tid].size(); i++) {
        if (std::type_index(t_info) == impl->registry[tid][i].first) {
            return {tid, i};
        }
    }
    TLASSERT(false);
    return {0, 0};
}
开发者ID:tbenthompson,项目名称:taskloaf,代码行数:11,代码来源:fnc_registry.cpp

示例3: lookupElemType

 size_t lookupElemType(const std::type_info &type) const
 {
     try
     {
         return _typeHashToElemType.at(type.hash_code());
     }
     catch (const std::exception &)
     {
         throw Pothos::DTypeUnknownError("Pothos::DType("+Pothos::Util::typeInfoToString(type)+")", "unsupported element type");
     }
 }
开发者ID:johnson325,项目名称:pothos,代码行数:11,代码来源:DType.cpp

示例4: insert

void fnc_registry::insert(const std::type_info& t_info, void* f_ptr) {
    auto tid = t_info.hash_code();
    impl->registry[tid].push_back({std::type_index(t_info), f_ptr});
}
开发者ID:tbenthompson,项目名称:taskloaf,代码行数:4,代码来源:fnc_registry.cpp


注:本文中的std::type_info::hash_code方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。