Boost C++ Libraries

...one of the most highly regarded and expertly designed C++ library projects in the world. Herb Sutter and Andrei Alexandrescu, C++ Coding Standards

This is the documentation for a snapshot of the master branch, built from commit 064f557086.
PrevUpHomeNext

Struct template optimize_multikey

boost::intrusive::optimize_multikey

Synopsis

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

template<bool Enabled> 
struct optimize_multikey {
};

Description

This option setter specifies if the unordered hook should offer room to store another link to another node with the same key. Storing this link will speed up lookups and insertions on unordered_multiset containers with a great number of elements with the same key.


PrevUpHomeNext