C++ Template Metaprogramming
Solutions to the exercises throughout the book
|
Apply a metafunction to its own result. More...
#include <chapter-3-twice.hpp>
Apply a metafunction to its own result.
In other words, this will perform F(F(X))
.
F | The unary metafunction to apply. |
X | The initial value to send to the metafunction. |
Definition at line 28 of file chapter-3-twice.hpp.