-----Original Message----- From: boost-users-bounces@lists.boost.org [mailto:boost-users-bounces@lists.boost.org] On Behalf Of Roman Perepelitsa
Paul Mensonides
writes: In the mean time, the following should get you started... [cut] #define SEQ \ (a)(b)(c)(d)(e)(f)(g)(h)(i)(j)(k)(l)(m) \ (n)(o)(p)(q)(r)(s)(t)(u)(v)(w)(x)(y)(z) \ /**/
A(SEQ)
Thank you, Paul. This is exactly what I need :-)
Be warned that the sequence that results from the above is a *binary* sequence, and the facilities in the pp-lib cannot deal with binary sequences--only unary. That's not a showstopper, but it means that you can't use generic tools (at least those provided by the pp-lib) to manipulate the result, so you'll have to "manually" generate whatever it is that you want to generate. However, if you can follow how the above works, you should be able to do that without too much difficulty. Regards, Paul Mensonides