Boost C++ 库

...是世界上最受推崇、设计最精良的 C++ 库项目之一。 Herb SutterAndrei Alexandrescu, C++ Coding Standards

结构体模板 compare_hash - Boost C++ 函数库
PrevUpHomeNext

结构体模板 compare_hash

boost::intrusive::compare_hash

提要

// In header: <boost/intrusive/options.hpp>

template<bool Enabled> 
struct compare_hash {
};

描述

此选项设置器指定容器是否将在比较对象之前比较哈希值。如果 store_hash<> 不为 true,则不能指定此选项。当容器具有高负载因子时,这一点特别有用,并且比较函数比比较已存储的哈希值要昂贵得多。


PrevUpHomeNext