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 an old version of Boost. Click here to view this page for the latest version.
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