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

Sequence

Concepts
Forward Sequence
Bidirectional Sequence
Random Access Sequence
Associative Sequence
Unbounded Sequence
Intrinsic
Functions
Metafunctions
Operator
I/O
Comparison
Hashing

Like MPL, the Sequence is a fundamental concept in Fusion. A Sequence may or may not actually store or contain data. Container are sequences that hold data. Views, on the other hand, are sequences that do not store any data. Instead, they are proxies that impart an alternative presentation over another sequence. All models of Sequence have an associated Iterator type that can be used to iterate through the Sequence's elements.

Header

#include <boost/fusion/sequence.hpp>
#include <boost/fusion/include/sequence.hpp>

PrevUpHomeNext