2013-08-08 09:54:33 +00:00
|
|
|
/*=============================================================================
|
|
|
|
Copyright (c) 2011-2013 Bolero MURAKAMI
|
|
|
|
https://github.com/bolero-MURAKAMI/Sprout
|
|
|
|
|
|
|
|
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)
|
|
|
|
=============================================================================*/
|
2011-11-03 17:11:19 +00:00
|
|
|
#ifndef SPROUT_TUPLE_OPERATION_APPEND_BACK_HPP
|
|
|
|
#define SPROUT_TUPLE_OPERATION_APPEND_BACK_HPP
|
|
|
|
|
|
|
|
#include <sprout/config.hpp>
|
2013-04-06 04:06:51 +00:00
|
|
|
#include <sprout/index_tuple/metafunction.hpp>
|
2011-11-06 01:56:57 +00:00
|
|
|
#include <sprout/tuple/tuple.hpp>
|
2011-11-03 17:11:19 +00:00
|
|
|
#include <sprout/tuple/functions.hpp>
|
2013-03-31 06:14:10 +00:00
|
|
|
#include <sprout/tuple/indexes.hpp>
|
2011-11-06 01:56:57 +00:00
|
|
|
#include <sprout/type/operation/append_back.hpp>
|
2011-11-03 17:11:19 +00:00
|
|
|
|
|
|
|
namespace sprout {
|
|
|
|
namespace tuples {
|
2013-11-20 13:04:11 +00:00
|
|
|
namespace results {
|
2011-11-03 17:11:19 +00:00
|
|
|
//
|
|
|
|
// append_back
|
|
|
|
//
|
|
|
|
template<typename Tuple, typename InputTuple>
|
2011-11-06 01:56:57 +00:00
|
|
|
struct append_back
|
|
|
|
: public sprout::types::append_back<Tuple, InputTuple>
|
|
|
|
{};
|
2013-11-20 13:04:11 +00:00
|
|
|
} // namespace results
|
2011-11-03 17:11:19 +00:00
|
|
|
|
|
|
|
namespace detail {
|
2012-02-28 01:46:39 +00:00
|
|
|
template<typename Result, typename Tuple, typename InputTuple, sprout::index_t... Indexes1, sprout::index_t... Indexes2>
|
2012-10-06 04:53:07 +00:00
|
|
|
inline SPROUT_CONSTEXPR Result
|
|
|
|
append_back_impl(
|
|
|
|
Tuple const& t, InputTuple const& input,
|
|
|
|
sprout::index_tuple<Indexes1...>, sprout::index_tuple<Indexes2...>
|
2011-11-03 17:11:19 +00:00
|
|
|
)
|
|
|
|
{
|
2012-03-31 07:24:13 +00:00
|
|
|
return sprout::tuples::remake<Result>(
|
2011-11-03 17:11:19 +00:00
|
|
|
t,
|
|
|
|
sprout::tuples::get<Indexes1>(t)...,
|
|
|
|
sprout::tuples::get<Indexes2>(input)...
|
|
|
|
);
|
|
|
|
}
|
|
|
|
} // namespace detail
|
|
|
|
//
|
|
|
|
// append_back
|
|
|
|
//
|
|
|
|
template<typename Tuple, typename InputTuple>
|
2013-11-20 13:04:11 +00:00
|
|
|
inline SPROUT_CONSTEXPR typename sprout::tuples::results::append_back<Tuple, InputTuple>::type
|
2012-10-06 04:53:07 +00:00
|
|
|
append_back(Tuple const& t, InputTuple const& input) {
|
2013-11-20 13:04:11 +00:00
|
|
|
return sprout::tuples::detail::append_back_impl<typename sprout::tuples::results::append_back<Tuple, InputTuple>::type>(
|
2012-10-06 04:53:07 +00:00
|
|
|
t, input,
|
2013-03-31 06:14:10 +00:00
|
|
|
sprout::tuple_indexes<Tuple>::make(),
|
|
|
|
sprout::tuple_indexes<InputTuple>::make()
|
2011-11-03 17:11:19 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
} // namespace tuples
|
|
|
|
} // namespace sprout
|
|
|
|
|
|
|
|
#endif // #ifndef SPROUT_TUPLE_OPERATION_APPEND_BACK_HPP
|