Boost C++ Libraries Home Libraries People FAQ More

PrevUpHomeNext

Macro BOOST_VMD_AFTER_IDENTIFIER

BOOST_VMD_AFTER_IDENTIFIER — Expands to the preprocessor tokens after the identifier of a macro parameter.

Synopsis

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

BOOST_VMD_AFTER_IDENTIFIER(parameter, ...)

Description

parameter = a macro parameter. ... = variadic parameters, maximum of 3

The first variadic parameter is:

key(s) = The data may take one of two forms: it is either a single C++ identifier as a unique 'key' or a Boost PP tuple of the unique 'key's.

The idea of a unique 'key' is not to duplicate any key that another library may use.

A unique key should not begin with an underscore. It may end with an underscore only if the value to be tested does not begin with an underscore. It may contain underscores.

Two different suggested ways to generate a unique key are: 1) Use a specific mnemonic for a particular module and concatenate an increasing numeric value, perhaps separated by an underscore, to it each time you use it, ie. TTI_0, TTI_1, TTI_2 etc. 2) use a GUID ( 128 bit unique number ) generated by the OS or software, prefixed by some alphabetic.

The 'identifier' to be tested against is specified by having the end-user defining an object-like macro, which does not expand to anything, whose form is:

#define BOOST_VMD_MAP_'key''identifier'

where 'key' is the key, or one of the keys, passed in this parameter, 'identifier' is a value to be tested against.

The second variadic parameter (optional) is: 1) a Boost PP sequence where each element in the sequence contains the key(s) of subsequent identifiers, where a 'key' is explained in the first variadic parameter. In other words each sequence element contains either a single key or a tuple of keys, ie '(key)' or '((key,key,key))'. The maximum number of sequence elements allowed is 4. OR 2) a number represented a maximum amount of subsequent Boost PP numbers following the identifier. The maximum number for this amount is 5. If the second optional parameter is not specified a beginning identifier will also always be found if followed by a single Boost PP number, a Boost PP tuple, or the end of the parameter. If the second optional parameter is a Boost PP sequence a beginning identifier will also be found if, subsequent to matching 0 or more further keys, a Boost PP tuple or the end of the parameter is found. If the second optional parameter is a number a beginning identifier will also be found if, subsequent to matching 0 or more Boost PP numbers, a Boost PP tuple or the end of the parameter is found.

The third variadic parameter (optional) is a number represented a maximum amount of Boost PP numbers following the subsequent identifiers specified by the second variadic parameter. The maximum number for this amount is 5.

If the second and third variadic parameters are specified, a beginning identifier will also be found if, subsequent to matching further keys followed by further numbers, a Boost PP tuple or the end of the parameter is found.

returns = expands to the preprocessor tokens after the identifier. If the identifier is not found, expands to nothing.


PrevUpHomeNext