mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2024-11-14 10:39:05 +00:00
65 lines
1.7 KiB
C++
65 lines
1.7 KiB
C++
#ifndef SPROUT_UTILITY_PACK_HPP
|
|
#define SPROUT_UTILITY_PACK_HPP
|
|
|
|
#include <cstddef>
|
|
#include <type_traits>
|
|
#include <sprout/config.hpp>
|
|
#include <sprout/utility/forward.hpp>
|
|
#include <sprout/utility/enabler.hpp>
|
|
|
|
namespace sprout {
|
|
//
|
|
// tppack_at
|
|
//
|
|
namespace detail {
|
|
template<std::size_t N, typename Head, typename... Tail>
|
|
struct tppack_at_impl {
|
|
public:
|
|
typedef typename sprout::detail::tppack_at_impl<N - 1, Tail...>::type type;
|
|
};
|
|
template<typename Head, typename... Tail>
|
|
struct tppack_at_impl<0, Head, Tail...> {
|
|
public:
|
|
typedef Head type;
|
|
};
|
|
} // namespace detail
|
|
template<std::size_t N, typename... Args>
|
|
struct tppack_at
|
|
: public sprout::detail::tppack_at_impl<N, Args...>
|
|
{};
|
|
|
|
//
|
|
// fppack_at
|
|
//
|
|
namespace detail {
|
|
template<
|
|
std::size_t N,
|
|
typename R,
|
|
typename Head,
|
|
typename... Tail,
|
|
typename std::enable_if<N == 0>::type*& = sprout::enabler
|
|
>
|
|
SPROUT_CONSTEXPR R fppack_at_impl(Head&& head, Tail&&... tail) {
|
|
return sprout::forward<Head>(head);
|
|
}
|
|
template<
|
|
std::size_t N,
|
|
typename R,
|
|
typename Head,
|
|
typename... Tail,
|
|
typename std::enable_if<N != 0>::type*& = sprout::enabler
|
|
>
|
|
SPROUT_CONSTEXPR R fppack_at_impl(Head&& head, Tail&&... tail) {
|
|
return sprout::detail::fppack_at_impl<N - 1, R>(sprout::forward<Tail>(tail)...);
|
|
}
|
|
} // namespace detail
|
|
template<std::size_t N, typename... Args>
|
|
SPROUT_CONSTEXPR typename sprout::tppack_at<N, Args&&...>::type fppack_at(Args&&... args) {
|
|
return sprout::detail::fppack_at_impl<
|
|
N,
|
|
typename sprout::tppack_at<N, Args&&...>::type
|
|
>(sprout::forward<Args>(args)...);
|
|
}
|
|
} // namespace sprout
|
|
|
|
#endif // #ifndef SPROUT_UTILITY_PACK_HPP
|