|
C++ Template Metaprogramming
Solutions to the exercises throughout the book
|
Encapsulate solution for Exercise 6-4. More...
Classes | |
| struct | binary_tree_search |
| Perform a search on a binary tree structure. More... | |
| struct | binary_tree_search< boost::mpl::void_, Elem > |
| If we get an empty subtree, indicate that there is nothing found. More... | |
| struct | binary_tree_search< chapter5::tree< Cur, L, R >, Elem > |
| The usual binary tree logic. More... | |
| struct | tree_end |
| Quick and dirty (non-iterator, I know) way to mark the end of the tree sequence... More... | |
Encapsulate solution for Exercise 6-4.