![]() |
Home | Libraries | People | FAQ | More |
BOOST_PROTO_REPEAT_EX — Repeatedly invoke the specified macro.
// In header: <boost/proto/repeat.hpp>
BOOST_PROTO_REPEAT_EX(MACRO, typename_A, A, A_a, a)
BOOST_PROTO_REPEAT_EX() is used to generate the kind of repetitive
code that is typical of EDSLs built with Proto.
BOOST_PROTO_REPEAT_EX(
is equivalent to:
MACRO, typename_A, A, A_a, a)
(((BOOST_PROTO_MAX_ARITY,
Example:
See BOOST_PROTO_REPEAT_FROM_TO().