123456789101112131415161718192021222324252627 |
- #ifndef BOOST_METAPARSE_V1_REPEATED_HPP
- #define BOOST_METAPARSE_V1_REPEATED_HPP
- #include <boost/metaparse/v1/foldl.hpp>
- #include <boost/metaparse/v1/impl/back_inserter.hpp>
- #include <boost/mpl/vector.hpp>
- namespace boost
- {
- namespace metaparse
- {
- namespace v1
- {
- template <class P>
- struct repeated : foldl<P, boost::mpl::vector<>, impl::back_inserter> {};
- }
- }
- }
- #endif
|