C++ Template Metaprogramming
Solutions to the exercises throughout the book
|
"Zip" corresponding elements of N arrays into a sequence of N-length subsequences. More...
#include <boost/mpl/begin_end.hpp>
#include <boost/mpl/deref.hpp>
#include <boost/mpl/iterator_category.hpp>
#include <boost/mpl/iterator_range.hpp>
#include <boost/mpl/placeholders.hpp>
#include <boost/mpl/transform.hpp>
#include <boost/mpl/empty.hpp>
#include <boost/mpl/find_if.hpp>
#include <boost/mpl/filter_view.hpp>
#include <boost/type_traits/is_same.hpp>
#include <boost/static_assert.hpp>
#include <boost/mpl/or.hpp>
#include <boost/mpl/at.hpp>
Go to the source code of this file.
Namespaces | |
namespace | chapter7 |
Provide utilities availble to all Chapter 7 solutions. | |
namespace | boost |
Exists to inject functionality into the Boost namespace. | |
namespace | boost::mpl |
Exists to inject functionality into the Boost MPL namespace. | |
"Zip" corresponding elements of N arrays into a sequence of N-length subsequences.
Definition in file chapter-7-zip_view.hpp.