/*============================================================================= 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