File indexing completed on 2025-01-18 09:41:38
0001
0002 #ifndef BOOST_MPL_ITER_APPLY_HPP_INCLUDED
0003 #define BOOST_MPL_ITER_APPLY_HPP_INCLUDED
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016
0017 #include <boost/mpl/apply.hpp>
0018 #include <boost/mpl/deref.hpp>
0019
0020 namespace boost { namespace mpl { namespace aux {
0021
0022 template<
0023 typename F
0024 , typename Iterator
0025 >
0026 struct iter_apply1
0027 : apply1< F,typename deref<Iterator>::type >
0028 {
0029 };
0030
0031 template<
0032 typename F
0033 , typename Iterator1
0034 , typename Iterator2
0035 >
0036 struct iter_apply2
0037 : apply2<
0038 F
0039 , typename deref<Iterator1>::type
0040 , typename deref<Iterator2>::type
0041 >
0042 {
0043 };
0044
0045 }}}
0046
0047 #endif