/usr/include/boost/fusion/algorithm/iteration
NameSizeModeActions
detail/-0755rm
accumulate.hpp15000644editdlrm
accumulate_fwd.hpp12050644editdlrm
fold.hpp23780644editdlrm
fold_fwd.hpp15750644editdlrm
for_each.hpp16460644editdlrm
for_each_fwd.hpp11840644editdlrm
iter_fold.hpp23160644editdlrm
iter_fold_fwd.hpp16300644editdlrm
reverse_fold.hpp23410644editdlrm
reverse_fold_fwd.hpp16630644editdlrm
reverse_iter_fold.hpp24210644editdlrm
reverse_iter_fold_fwd.hpp17180644editdlrm
Edit: /usr/include/boost/fusion/algorithm/iteration/for_each.hpp (1646B)
/*============================================================================= Copyright (c) 2001-2007 Joel de Guzman Copyright (c) 2007 Dan Marsden Copyright (c) 2018 Kohei Takahashi Distributed under 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(BOOST_FUSION_FOR_EACH_20070527_0943) #define BOOST_FUSION_FOR_EACH_20070527_0943 #include #include #include #include #include #include namespace boost { namespace fusion { namespace result_of { template struct for_each { typedef void type; }; } template BOOST_CXX14_CONSTEXPR BOOST_FUSION_GPU_ENABLED inline typename enable_if >::type for_each(Sequence& seq, F f) { detail::for_each(seq, f, typename traits::is_segmented::type()); } template BOOST_CXX14_CONSTEXPR BOOST_FUSION_GPU_ENABLED inline typename enable_if >::type for_each(Sequence const& seq, F f) { detail::for_each(seq, f, typename traits::is_segmented::type()); } }} #endif