c++boost.gif (8819 bytes)
Main Page   File List   File Members  

transform.hpp File Reference


Defines

#define BOOST_PP_LIST_TRANSFORM(F, P, L)
 Applies the macro F(D,P,X) to each element X of the list producing a new list. More...


Detailed Description

Click here to see the header.


Define Documentation

#define BOOST_PP_LIST_TRANSFORM F,
P,
 
 

Applies the macro F(D,P,X) to each element X of the list producing a new list.

In other words, BOOST_PP_LIST_TRANSFORM(F,P,L) expands to same as:

  BOOST_PP_LIST_CONS(F(D,P,BOOST_PP_LIST_AT(L,0)),
  BOOST_PP_LIST_CONS(F(D,P,BOOST_PP_LIST_AT(L,1)),
  ...
  BOOST_PP_LIST_CONS(F(D,P,BOOST_PP_LIST_AT(L,BOOST_PP_DEC(BOOST_PP_LIST_SIZE(L)))),
  BOOST_PP_LIST_NIL) ... ))

For example,

  BOOST_PP_LIST_TRANSFORM(BOOST_PP_ADD_D,2,BOOST_PP_TUPLE_TO_LIST(2,(1,2)))

expands to a list containing 3 and 4.


© Copyright Housemarque Oy 2001

Permission to copy, use, modify, sell and distribute this document is granted provided this copyright notice appears in all copies. This document is provided "as is" without express or implied warranty, and with no claim as to its suitability for any purpose.

Generated: