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

Concept summary

Here is a small summary of the basic concepts that will be used in the following chapters:

Brief Concepts Summary

Node Algorithms

A class containing typedefs and static functions that define basic operations that can be applied to a group of nodes. It's independent from the node definition and configured using a NodeTraits template parameter that describes the node.

Node Traits

A class that stores basic information and operations to insert a node into a group of nodes.

Hook

A class that a user must add as a base class or as a member to make the user class compatible with intrusive containers.

Intrusive Container

A class that stores user classes that have the needed hooks. It takes a ValueTraits template parameter as configuration information.

Semi-Intrusive Container

Similar to an intrusive container but a semi-intrusive container needs additional memory (e.g. an auxiliary array) to work.

Value Traits

A class containing typedefs and operations to obtain the node to be used by Node Algorithms from the user class and the inverse.


PrevUpHomeNext