Warning, file /include/boost/phoenix/stl/algorithm/detail/begin.hpp was not indexed
or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011 #ifndef BOOST_PHOENIX_ALGORITHM_DETAIL_BEGIN_HPP
0012 #define BOOST_PHOENIX_ALGORITHM_DETAIL_BEGIN_HPP
0013
0014
0015 #include <boost/range/iterator.hpp>
0016 #include <boost/range/begin.hpp>
0017
0018 namespace boost { namespace phoenix {
0019 namespace detail
0020 {
0021 template<class R>
0022 typename range_iterator<R>::type
0023 begin_(R& r)
0024 {
0025 return boost::begin(r);
0026 }
0027 }
0028 }}
0029
0030 #endif