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 0da16e0695.
PrevUpHomeNext

Macro BOOST_VMD_IS_SEQ_D

BOOST_VMD_IS_SEQ_D — Determines if a sequence is a Boost PP seq. Re-entrant version.

Synopsis

// In header: <boost/vmd/is_seq.hpp>

BOOST_VMD_IS_SEQ_D(d, sequence)

Description

The macro checks that the sequence is a Boost PP seq. It returns 1 if it is a seq, else if returns 0.

d = The next available BOOST_PP_WHILE iteration.
sequence = a possible Boost PP seq

returns = 1 if it a seq, else returns 0.

A single set of parentheses, with a single element, is parsed as a tuple and not a seq. To be parsed as a seq the input needs to be more than one consecutive sets of parentheses, each with a single element of data.


PrevUpHomeNext