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

Functional groups

The particular constructs for which VMD has functionality can be divided into these categories:

  1. Emptiness
  2. Identifiers
  3. Numbers
  4. Types
  5. Boost PP data types ( array, list, seq, and tuple )
  6. Sequences
  7. Additional helper variadic macros

The first six categories delineate the data types which VMD can parse. The last category presents additional macros which will prove helpful for a macro programmer using variadic macros with VMD and Boost PP.

A general explanation of each of these categories will follow in the appropriate place in the documentation.

VMD macros for working with the above data types which VMD understands can be divided into 'specific' and 'generic' macros.

The specific macros ask whether some input data is a particular data type. The generic macros work with input data as any data type while allowing the programmer to separately query the type of data.

Both specific and generic macros have their place and the macro programmer can decide which to use for any given situation.


PrevUpHomeNext