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 develop branch, built from commit 9759d076a6.
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