for_each.hpp

来自「CGAL is a collaborative effort of severa」· HPP 代码 · 共 70 行

HPP
70
字号
/*=============================================================================    Copyright (c) 2003 Joel de Guzman    Use, modification and distribution is subject to the Boost Software    License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at    http://www.boost.org/LICENSE_1_0.txt)==============================================================================*/#if !defined(FUSION_ALGORITHM_FOR_EACH_HPP)#define FUSION_ALGORITHM_FOR_EACH_HPP#include <boost/spirit/fusion/sequence/begin.hpp>#include <boost/spirit/fusion/sequence/end.hpp>#include <boost/spirit/fusion/iterator/equal_to.hpp>#include <boost/spirit/fusion/algorithm/detail/for_each.ipp>namespace boost { namespace fusion{    namespace meta    {        template <typename Sequence, typename F>        struct for_each        {            typedef void type;        };    }    namespace function    {        struct for_each        {            template <typename Sequence, typename F>            struct apply            {                typedef void type;            };            template <typename Sequence, typename F>            inline void            operator()(Sequence const& seq, F const& f) const            {                detail::for_each(                        fusion::begin(seq)                      , fusion::end(seq)                      , f                      , meta::equal_to<                            typename meta::begin<Sequence>::type                          , typename meta::end<Sequence>::type>());            }            template <typename Sequence, typename F>            inline void            operator()(Sequence& seq, F const& f) const            {                detail::for_each(                        fusion::begin(seq)                      , fusion::end(seq)                      , f                      , meta::equal_to<                            typename meta::begin<Sequence>::type                          , typename meta::end<Sequence>::type>());            }        };    }    function::for_each const for_each = function::for_each();}}#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?