/usr/include/boost/fusion/adapted/std_tuple/detail
NameSizeModeActions
at_impl.hpp16850644editdlrm
begin_impl.hpp11670644editdlrm
build_std_tuple.hpp28210644editdlrm
category_of_impl.hpp9170644editdlrm
convert_impl.hpp14930644editdlrm
end_impl.hpp13710644editdlrm
is_sequence_impl.hpp8900644editdlrm
is_view_impl.hpp8680644editdlrm
size_impl.hpp10520644editdlrm
value_at_impl.hpp9050644editdlrm
Edit: /usr/include/boost/fusion/adapted/std_tuple/detail/build_std_tuple.hpp (2821B)
/*============================================================================= Copyright (c) 2014 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_BUILD_STD_TUPLE_05292014_0100) #define BOOST_FUSION_BUILD_STD_TUPLE_05292014_0100 #include #include #include #include #include #include #include #include namespace boost { namespace fusion { namespace detail { template ::value> struct build_std_tuple; template struct build_std_tuple { typedef std::tuple<> type; BOOST_CONSTEXPR BOOST_FUSION_GPU_ENABLED static type call(First const&, Last const&) { return type(); } }; template struct push_front_std_tuple; template struct push_front_std_tuple > { typedef std::tuple type; template BOOST_CONSTEXPR BOOST_FUSION_GPU_ENABLED static type indexed_call(T const& first, std::tuple const& rest, index_sequence) { return type(first, std::get(rest)...); } BOOST_CONSTEXPR BOOST_FUSION_GPU_ENABLED static type call(T const& first, std::tuple const& rest) { typedef typename make_index_sequence::type gen; return indexed_call(first, rest, gen()); } }; template struct build_std_tuple { typedef build_std_tuple::type, Last> next_build_std_tuple; typedef push_front_std_tuple< typename result_of::value_of::type , typename next_build_std_tuple::type> push_front; typedef typename push_front::type type; BOOST_CXX14_CONSTEXPR BOOST_FUSION_GPU_ENABLED static type call(First const& f, Last const& l) { typename result_of::value_of::type v = *f; return push_front::call( v, next_build_std_tuple::call(fusion::next(f), l)); } }; }}} #endif