tags:

views:

111

answers:

2

Modern C++ design only gets me to typelists.

C++ templates the complete guide brings me only to tuples.

I want to learn how to _implement variants.

Does any C++ book explains this?

Thanks!

+1  A: 

Here is somthing its not a book but an article.

slayerIQ
+2  A: 

I'm not familair with a book that describes this topic, but for starters, I would study the Boost Variant implementation.

Steve Guidi