本文整理汇总了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();
}
示例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};
}
示例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");
}
}
示例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});
}