/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/reverse_iter_fold_fwd.hpp (1718B)
/*============================================================================= Copyright (c) 2011 Eric Niebler 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) ==============================================================================*/ #ifndef BOOST_FUSION_ALGORITHM_ITERATION_REVERSE_ITER_FOLD_FWD_HPP #define BOOST_FUSION_ALGORITHM_ITERATION_REVERSE_ITER_FOLD_FWD_HPP namespace boost { namespace fusion { namespace result_of { template struct reverse_iter_fold; } template BOOST_CONSTEXPR BOOST_FUSION_GPU_ENABLED inline typename result_of::reverse_iter_fold< Seq , State const , F >::type reverse_iter_fold(Seq& seq, State const& state, F f); template BOOST_CONSTEXPR BOOST_FUSION_GPU_ENABLED inline typename result_of::reverse_iter_fold< Seq const , State const , F >::type reverse_iter_fold(Seq const& seq, State const& state, F f); template BOOST_CONSTEXPR BOOST_FUSION_GPU_ENABLED inline typename result_of::reverse_iter_fold< Seq , State , F >::type reverse_iter_fold(Seq& seq, State& state, F f); template BOOST_CONSTEXPR BOOST_FUSION_GPU_ENABLED inline typename result_of::reverse_iter_fold< Seq const , State , F >::type reverse_iter_fold(Seq const& seq, State& state, F f); }} #endif