-----Original Message----- From: boost-users-bounces@lists.boost.org [mailto:boost-users-bounces@lists.boost.org] On Behalf Of Felipe Magno de Almeida
Not a naive question, check this: http://lists.boost.org/Archives/boost/2005/03/83253.php
Could you say if I understood the code correctly? This code only "translates string of words into string of characters" for the words registered.
Yes.
Is that right? I dont know if that fits very well to me...
The best that you can do (realistically) is a string of space-separated letters. The preprocessor cannot break apart arbitrary identifiers into letters, and it cannot deal with punctuators or operators at all.
One more thing, what is this chaos library? Never heard about it.
Chaos is a preprocessor library similar to the Boost Preprocessor Library, but is much more advanced and extensible. However, it isn't portable to broken preprocessors, so it isn't usable on (e.g.) VC. Regards, Paul Mensonides