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 linear_buckets

boost::intrusive::linear_buckets

Synopsis

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

template<bool Enabled> 
struct linear_buckets {
};

Description

This option setter specifies if the buckets (which form a singly linked lists of nodes) are linear (true) or circular (false, default value). Linear buckets can improve performance in some cases, but the container loses some features like obtaining an iterator from a value.


PrevUpHomeNext