/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/accumulate_fwd.hpp (1205B)
/*============================================================================= Copyright (c) 2011 Eric Niebler Copyright (c) 2015 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_ACCUMULATE_FWD_HPP_INCLUDED) #define BOOST_FUSION_ACCUMULATE_FWD_HPP_INCLUDED #include namespace boost { namespace fusion { namespace result_of { template struct accumulate; } template BOOST_CONSTEXPR BOOST_FUSION_GPU_ENABLED inline typename result_of::accumulate::type accumulate(Sequence& seq, State const& state, F f); template BOOST_CONSTEXPR BOOST_FUSION_GPU_ENABLED inline typename result_of::accumulate::type accumulate(Sequence const& seq, State const& state, F f); }} #endif