2011-10-30 14:10:24 +00:00
|
|
|
#ifndef SPROUT_TUPLE_TUPLE_HPP
|
|
|
|
#define SPROUT_TUPLE_TUPLE_HPP
|
|
|
|
|
|
|
|
#include <cstddef>
|
|
|
|
#include <utility>
|
|
|
|
#include <type_traits>
|
|
|
|
#include <tuple>
|
|
|
|
#include <sprout/config.hpp>
|
2011-11-03 04:15:21 +00:00
|
|
|
#include <sprout/utility/operation.hpp>
|
2011-10-30 14:10:24 +00:00
|
|
|
|
|
|
|
namespace sprout {
|
|
|
|
namespace tuples {
|
|
|
|
namespace detail {
|
|
|
|
template<std::size_t Index, typename Head, bool IsEmpty>
|
|
|
|
class head_base;
|
2012-04-30 08:30:47 +00:00
|
|
|
//!!!
|
|
|
|
// EBO disabled
|
|
|
|
// template<std::size_t Index, typename Head>
|
|
|
|
// class head_base<Index, Head, true>
|
|
|
|
// : public Head
|
|
|
|
// {
|
|
|
|
// public:
|
|
|
|
// static SPROUT_CONSTEXPR Head& head(head_base& t) SPROUT_NOEXCEPT {
|
|
|
|
// return t;
|
|
|
|
// }
|
|
|
|
// static SPROUT_CONSTEXPR Head const& head(head_base const& t) SPROUT_NOEXCEPT {
|
|
|
|
// return t;
|
|
|
|
// }
|
|
|
|
// public:
|
|
|
|
// SPROUT_CONSTEXPR head_base()
|
|
|
|
// : Head()
|
|
|
|
// {}
|
|
|
|
// SPROUT_CONSTEXPR head_base(Head const& v)
|
|
|
|
// : Head(v)
|
|
|
|
// {}
|
|
|
|
// template<typename UHead>
|
|
|
|
// SPROUT_CONSTEXPR head_base(UHead&& v)
|
|
|
|
// : Head(sprout::forward<UHead>(v))
|
|
|
|
// {}
|
|
|
|
// };
|
2011-10-30 14:10:24 +00:00
|
|
|
template<std::size_t Index, typename Head>
|
2012-04-30 08:30:47 +00:00
|
|
|
class head_base<Index, Head, true> {
|
2011-10-30 14:10:24 +00:00
|
|
|
public:
|
|
|
|
static SPROUT_CONSTEXPR Head& head(head_base& t) SPROUT_NOEXCEPT {
|
2012-04-30 08:30:47 +00:00
|
|
|
return t.head_;
|
2011-10-30 14:10:24 +00:00
|
|
|
}
|
|
|
|
static SPROUT_CONSTEXPR Head const& head(head_base const& t) SPROUT_NOEXCEPT {
|
2012-04-30 08:30:47 +00:00
|
|
|
return t.head_;
|
2011-10-30 14:10:24 +00:00
|
|
|
}
|
2012-04-30 08:30:47 +00:00
|
|
|
private:
|
|
|
|
Head head_;
|
2011-10-30 14:10:24 +00:00
|
|
|
public:
|
|
|
|
SPROUT_CONSTEXPR head_base()
|
2012-04-30 08:30:47 +00:00
|
|
|
: head_()
|
2011-10-30 14:10:24 +00:00
|
|
|
{}
|
|
|
|
SPROUT_CONSTEXPR head_base(Head const& v)
|
2012-04-30 08:30:47 +00:00
|
|
|
: head_(v)
|
2011-10-30 14:10:24 +00:00
|
|
|
{}
|
|
|
|
template<typename UHead>
|
|
|
|
SPROUT_CONSTEXPR head_base(UHead&& v)
|
2012-04-30 08:30:47 +00:00
|
|
|
: head_(sprout::forward<UHead>(v))
|
2011-10-30 14:10:24 +00:00
|
|
|
{}
|
|
|
|
};
|
|
|
|
template<std::size_t Index, typename Head>
|
|
|
|
class head_base<Index, Head, false> {
|
|
|
|
public:
|
|
|
|
static SPROUT_CONSTEXPR Head& head(head_base& t) SPROUT_NOEXCEPT {
|
|
|
|
return t.head_;
|
|
|
|
}
|
|
|
|
static SPROUT_CONSTEXPR Head const& head(head_base const& t) SPROUT_NOEXCEPT {
|
|
|
|
return t.head_;
|
|
|
|
}
|
|
|
|
private:
|
|
|
|
Head head_;
|
|
|
|
public:
|
|
|
|
SPROUT_CONSTEXPR head_base()
|
|
|
|
: head_()
|
|
|
|
{}
|
|
|
|
SPROUT_CONSTEXPR head_base(Head const& v)
|
|
|
|
: head_(v)
|
|
|
|
{}
|
|
|
|
template<typename UHead>
|
|
|
|
SPROUT_CONSTEXPR head_base(UHead&& v)
|
|
|
|
: head_(sprout::forward<UHead>(v))
|
|
|
|
{}
|
|
|
|
};
|
|
|
|
|
|
|
|
template<std::size_t Index, typename... Types>
|
2011-11-12 11:24:42 +00:00
|
|
|
class tuple_impl;
|
2011-10-30 14:10:24 +00:00
|
|
|
template<std::size_t Index>
|
|
|
|
class tuple_impl<Index> {
|
|
|
|
public:
|
|
|
|
template<std::size_t, typename...>
|
|
|
|
friend class sprout::tuples::detail::tuple_impl;
|
|
|
|
protected:
|
|
|
|
void swap(tuple_impl&) SPROUT_NOEXCEPT {}
|
|
|
|
public:
|
|
|
|
tuple_impl() = default;
|
2011-11-03 04:15:21 +00:00
|
|
|
template<typename... UTypes>
|
2012-04-11 14:28:29 +00:00
|
|
|
explicit SPROUT_CONSTEXPR tuple_impl(UTypes&&... args) SPROUT_NOEXCEPT {}
|
2011-11-03 04:15:21 +00:00
|
|
|
SPROUT_CONSTEXPR tuple_impl(tuple_impl const&) = default;
|
|
|
|
SPROUT_CONSTEXPR tuple_impl(tuple_impl&&) = default;
|
|
|
|
template<typename... UTypes>
|
|
|
|
SPROUT_CONSTEXPR tuple_impl(tuple_impl<Index, UTypes...> const& t) SPROUT_NOEXCEPT {}
|
|
|
|
template<typename... UTypes>
|
|
|
|
SPROUT_CONSTEXPR tuple_impl(tuple_impl<Index, UTypes...>&& t) SPROUT_NOEXCEPT {}
|
|
|
|
tuple_impl& operator=(tuple_impl const&) = default;
|
|
|
|
tuple_impl& operator=(tuple_impl&& t) = default;
|
|
|
|
template<typename... UTypes>
|
|
|
|
tuple_impl& operator=(sprout::tuples::detail::tuple_impl<Index, UTypes...> const&) SPROUT_NOEXCEPT {
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
template<typename... UTypes>
|
|
|
|
tuple_impl& operator=(sprout::tuples::detail::tuple_impl<Index, UTypes...>&&) SPROUT_NOEXCEPT {
|
|
|
|
return *this;
|
|
|
|
}
|
2011-10-30 14:10:24 +00:00
|
|
|
};
|
|
|
|
template<std::size_t Index, typename Head, typename... Tail>
|
|
|
|
class tuple_impl<Index, Head, Tail...>
|
|
|
|
: public sprout::tuples::detail::tuple_impl<Index + 1, Tail...>
|
|
|
|
, private sprout::tuples::detail::head_base<Index, Head, std::is_empty<Head>::value>
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
template<std::size_t, typename...>
|
|
|
|
friend class sprout::tuples::detail::tuple_impl;
|
|
|
|
public:
|
|
|
|
typedef sprout::tuples::detail::tuple_impl<Index + 1, Tail...> inherited_type;
|
|
|
|
typedef sprout::tuples::detail::head_base<Index, Head, std::is_empty<Head>::value> base_type;
|
|
|
|
public:
|
|
|
|
static SPROUT_CONSTEXPR Head& head(tuple_impl& t) SPROUT_NOEXCEPT {
|
|
|
|
return base_type::head(t);
|
|
|
|
}
|
2011-11-03 04:15:21 +00:00
|
|
|
static SPROUT_CONSTEXPR Head const& head(tuple_impl const& t) SPROUT_NOEXCEPT {
|
2011-10-30 14:10:24 +00:00
|
|
|
return base_type::head(t);
|
|
|
|
}
|
|
|
|
static SPROUT_CONSTEXPR inherited_type& tail(tuple_impl& t) SPROUT_NOEXCEPT {
|
|
|
|
return t;
|
|
|
|
}
|
|
|
|
static SPROUT_CONSTEXPR inherited_type const& tail(tuple_impl const& t) SPROUT_NOEXCEPT {
|
|
|
|
return t;
|
|
|
|
}
|
|
|
|
protected:
|
|
|
|
void swap(tuple_impl& t) SPROUT_NOEXCEPT_EXPR(
|
|
|
|
SPROUT_NOEXCEPT_EXPR(swap(std::declval<Head&>(), std::declval<Head&>()))
|
|
|
|
&& SPROUT_NOEXCEPT_EXPR(tail(t).swap(tail(t)))
|
|
|
|
)
|
|
|
|
{
|
|
|
|
using std::swap;
|
|
|
|
swap(head(*this), head(t));
|
|
|
|
inherited_type::swap(tail(t));
|
|
|
|
}
|
|
|
|
public:
|
|
|
|
SPROUT_CONSTEXPR tuple_impl()
|
|
|
|
: inherited_type()
|
|
|
|
, base_type()
|
|
|
|
{}
|
2012-04-11 14:28:29 +00:00
|
|
|
explicit SPROUT_CONSTEXPR tuple_impl(Head const& h, Tail const&... tail)
|
2011-10-30 14:10:24 +00:00
|
|
|
: inherited_type(tail...)
|
|
|
|
, base_type(h)
|
|
|
|
{}
|
2011-11-03 04:15:21 +00:00
|
|
|
template<typename UHead, typename... UTail>
|
2012-04-11 14:28:29 +00:00
|
|
|
explicit SPROUT_CONSTEXPR tuple_impl(UHead&& h, UTail&&... tail)
|
2011-10-30 14:10:24 +00:00
|
|
|
: inherited_type(sprout::forward<UTail>(tail)...)
|
|
|
|
, base_type(sprout::forward<UHead>(h))
|
|
|
|
{}
|
|
|
|
SPROUT_CONSTEXPR tuple_impl(tuple_impl const&) = default;
|
|
|
|
SPROUT_CONSTEXPR tuple_impl(tuple_impl&& t)
|
|
|
|
SPROUT_NOEXCEPT_EXPR(std::is_nothrow_move_constructible<Head>::value && std::is_nothrow_move_constructible<inherited_type>::value)
|
2011-11-03 04:15:21 +00:00
|
|
|
: inherited_type(sprout::move(tail(t)))
|
2011-10-30 14:10:24 +00:00
|
|
|
, base_type(sprout::forward<Head>(head(t)))
|
|
|
|
{}
|
|
|
|
template<typename... UTypes>
|
|
|
|
SPROUT_CONSTEXPR tuple_impl(tuple_impl<Index, UTypes...> const& t)
|
|
|
|
: inherited_type(sprout::tuples::detail::tuple_impl<Index, UTypes...>::tail(t))
|
|
|
|
, base_type(sprout::tuples::detail::tuple_impl<Index, UTypes...>::head(t))
|
|
|
|
{}
|
|
|
|
template<typename UHead, typename... UTail>
|
|
|
|
SPROUT_CONSTEXPR tuple_impl(tuple_impl<Index, UHead, UTail...>&& t)
|
2011-11-03 04:15:21 +00:00
|
|
|
: inherited_type(sprout::move(sprout::tuples::detail::tuple_impl<Index, UHead, UTail...>::tail(t)))
|
2011-10-30 14:10:24 +00:00
|
|
|
, base_type(sprout::forward<UHead>(sprout::tuples::detail::tuple_impl<Index, UHead, UTail...>::head(t)))
|
|
|
|
{}
|
2011-11-03 04:15:21 +00:00
|
|
|
SPROUT_CONSTEXPR tuple_impl(tuple_impl<Index> const& t)
|
|
|
|
: inherited_type()
|
|
|
|
, base_type()
|
|
|
|
{}
|
|
|
|
SPROUT_CONSTEXPR tuple_impl(tuple_impl<Index>&& t)
|
|
|
|
: inherited_type()
|
|
|
|
, base_type()
|
|
|
|
{}
|
2011-10-30 14:10:24 +00:00
|
|
|
tuple_impl& operator=(tuple_impl const& t) {
|
|
|
|
head(*this) = head(t);
|
|
|
|
tail(*this) = tail(t);
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
tuple_impl& operator=(tuple_impl&& t)
|
|
|
|
SPROUT_NOEXCEPT_EXPR(std::is_nothrow_move_assignable<Head>::value && std::is_nothrow_move_assignable<inherited_type>::value)
|
|
|
|
{
|
|
|
|
head(*this) = sprout::forward<Head>(head(t));
|
2011-11-03 04:15:21 +00:00
|
|
|
tail(*this) = sprout::move(tail(t));
|
2011-10-30 14:10:24 +00:00
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
template<typename... UTypes>
|
|
|
|
tuple_impl& operator=(sprout::tuples::detail::tuple_impl<Index, UTypes...> const& t) {
|
|
|
|
head(*this) = sprout::tuples::detail::tuple_impl<Index, UTypes...>::head(t);
|
|
|
|
tail(*this) = sprout::tuples::detail::tuple_impl<Index, UTypes...>::tail(t);
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
template<typename UHead, typename... UTail>
|
|
|
|
tuple_impl& operator=(sprout::tuples::detail::tuple_impl<Index, UHead, UTail...>&& t) {
|
|
|
|
head(*this) = sprout::forward<UHead>(sprout::tuples::detail::tuple_impl<Index, UHead, UTail...>::head(t));
|
2011-11-03 04:15:21 +00:00
|
|
|
tail(*this) = sprout::move(sprout::tuples::detail::tuple_impl<Index, UHead, UTail...>::tail(t));
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
tuple_impl& operator=(sprout::tuples::detail::tuple_impl<Index> const& t) {
|
|
|
|
*this = sprout::move(tuple_impl());
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
tuple_impl& operator=(sprout::tuples::detail::tuple_impl<Index>&& t) {
|
|
|
|
*this = sprout::move(tuple_impl());
|
2011-10-30 14:10:24 +00:00
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
};
|
2012-04-09 17:36:49 +00:00
|
|
|
|
2012-05-14 06:42:54 +00:00
|
|
|
template<bool Head, bool... Tail>
|
|
|
|
struct and_impl;
|
|
|
|
template<>
|
|
|
|
struct and_impl<true>
|
|
|
|
: public std::true_type
|
|
|
|
{};
|
|
|
|
template<>
|
|
|
|
struct and_impl<false>
|
2012-04-09 17:36:49 +00:00
|
|
|
: public std::false_type
|
|
|
|
{};
|
2012-05-14 06:42:54 +00:00
|
|
|
template<bool... Tail>
|
2012-04-09 17:36:49 +00:00
|
|
|
struct and_impl<true, Tail...>
|
|
|
|
: public std::integral_constant<bool, sprout::tuples::detail::and_impl<Tail...>::value>
|
|
|
|
{};
|
2012-05-14 06:42:54 +00:00
|
|
|
template<bool... Tail>
|
|
|
|
struct and_impl<false, Tail...>
|
|
|
|
: public std::false_type
|
|
|
|
{};
|
|
|
|
template<typename... Types>
|
2012-04-09 17:36:49 +00:00
|
|
|
struct and_
|
2012-05-14 06:42:54 +00:00
|
|
|
: public sprout::tuples::detail::and_impl<Types::value...>
|
|
|
|
{};
|
|
|
|
|
|
|
|
template<bool Head, bool... Tail>
|
|
|
|
struct or_impl;
|
|
|
|
template<>
|
|
|
|
struct or_impl<true>
|
|
|
|
: public std::true_type
|
|
|
|
{};
|
|
|
|
template<>
|
|
|
|
struct or_impl<false>
|
|
|
|
: public std::false_type
|
|
|
|
{};
|
|
|
|
template<bool... Tail>
|
|
|
|
struct or_impl<true, Tail...>
|
|
|
|
: public std::true_type
|
|
|
|
{};
|
|
|
|
template<bool... Tail>
|
|
|
|
struct or_impl<false, Tail...>
|
|
|
|
: public std::integral_constant<bool, sprout::tuples::detail::or_impl<Tail...>::value>
|
|
|
|
{};
|
|
|
|
template<typename... Types>
|
|
|
|
struct or_
|
|
|
|
: public sprout::tuples::detail::and_impl<Types::value...>
|
2012-04-09 17:36:49 +00:00
|
|
|
{};
|
2011-10-30 14:10:24 +00:00
|
|
|
} // namespace detail
|
|
|
|
|
2012-04-09 17:36:49 +00:00
|
|
|
template<typename... Types>
|
|
|
|
class tuple;
|
|
|
|
|
|
|
|
//
|
|
|
|
// is_tuple
|
|
|
|
//
|
|
|
|
template<typename T>
|
|
|
|
struct is_tuple
|
|
|
|
: public std::false_type
|
|
|
|
{};
|
|
|
|
template<typename T>
|
|
|
|
struct is_tuple<T const>
|
|
|
|
: public sprout::tuples::is_tuple<T>
|
|
|
|
{};
|
|
|
|
template<typename T>
|
|
|
|
struct is_tuple<T const volatile>
|
|
|
|
: public sprout::tuples::is_tuple<T>
|
|
|
|
{};
|
|
|
|
template<typename... Types>
|
|
|
|
struct is_tuple<sprout::tuples::tuple<Types...> >
|
|
|
|
: public std::true_type
|
|
|
|
{};
|
|
|
|
|
2011-10-30 14:10:24 +00:00
|
|
|
//
|
|
|
|
// tuple
|
|
|
|
//
|
2011-11-12 11:24:42 +00:00
|
|
|
template<typename... Types>
|
2011-10-30 14:10:24 +00:00
|
|
|
class tuple
|
|
|
|
: public sprout::tuples::detail::tuple_impl<0, Types...>
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
typedef sprout::tuples::detail::tuple_impl<0, Types...> inherited_type;
|
|
|
|
public:
|
|
|
|
// tuple construction
|
|
|
|
SPROUT_CONSTEXPR tuple()
|
|
|
|
: inherited_type()
|
|
|
|
{}
|
2012-04-11 14:28:29 +00:00
|
|
|
explicit SPROUT_CONSTEXPR tuple(Types const&... elements)
|
2011-10-30 14:10:24 +00:00
|
|
|
: inherited_type(elements...)
|
|
|
|
{}
|
2012-04-09 17:36:49 +00:00
|
|
|
template<
|
|
|
|
typename U,
|
|
|
|
typename = typename std::enable_if<
|
|
|
|
!sprout::tuples::is_tuple<typename std::remove_reference<U>::type>::value
|
|
|
|
>::type
|
|
|
|
>
|
2012-04-11 14:28:29 +00:00
|
|
|
explicit SPROUT_CONSTEXPR tuple(U&& elem)
|
2012-04-09 17:36:49 +00:00
|
|
|
: inherited_type(sprout::forward<U>(elem))
|
|
|
|
{}
|
|
|
|
template<
|
|
|
|
typename U1,
|
|
|
|
typename U2,
|
|
|
|
typename... UTypes
|
|
|
|
>
|
2012-04-11 14:28:29 +00:00
|
|
|
explicit SPROUT_CONSTEXPR tuple(U1&& elem1, U2&& elem2, UTypes&&... elements)
|
2012-04-09 17:36:49 +00:00
|
|
|
: inherited_type(sprout::forward<U1>(elem1), sprout::forward<U2>(elem2), sprout::forward<UTypes>(elements)...)
|
2011-10-30 14:10:24 +00:00
|
|
|
{}
|
2011-11-26 06:20:35 +00:00
|
|
|
SPROUT_CONSTEXPR tuple(tuple const&) = default;
|
2011-10-30 14:10:24 +00:00
|
|
|
SPROUT_CONSTEXPR tuple(tuple&&) = default;
|
2011-11-03 04:15:21 +00:00
|
|
|
template<typename... UTypes>
|
2011-10-30 14:10:24 +00:00
|
|
|
SPROUT_CONSTEXPR tuple(sprout::tuples::tuple<UTypes...> const& t)
|
|
|
|
: inherited_type(static_cast<sprout::tuples::detail::tuple_impl<0, UTypes...> const&>(t))
|
|
|
|
{}
|
2011-11-03 04:15:21 +00:00
|
|
|
template<typename... UTypes>
|
2011-10-30 14:10:24 +00:00
|
|
|
SPROUT_CONSTEXPR tuple(sprout::tuples::tuple<UTypes...>&& t)
|
|
|
|
: inherited_type(static_cast<sprout::tuples::detail::tuple_impl<0, UTypes...>&&>(t))
|
|
|
|
{}
|
|
|
|
// tuple assignment
|
2011-11-06 01:56:57 +00:00
|
|
|
tuple& operator=(tuple const& rhs) {
|
2011-10-30 14:10:24 +00:00
|
|
|
static_cast<inherited_type&>(*this) = rhs;
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
tuple& operator=(tuple&& rhs) SPROUT_NOEXCEPT_EXPR(std::is_nothrow_move_assignable<inherited_type>::value) {
|
2011-11-03 04:15:21 +00:00
|
|
|
static_cast<inherited_type&>(*this) = sprout::move(rhs);
|
2011-10-30 14:10:24 +00:00
|
|
|
return *this;
|
|
|
|
}
|
2011-11-03 04:15:21 +00:00
|
|
|
template<typename... UTypes>
|
2011-10-30 14:10:24 +00:00
|
|
|
tuple& operator=(sprout::tuples::tuple<UTypes...> const& rhs) {
|
|
|
|
static_cast<inherited_type&>(*this) = rhs;
|
|
|
|
return *this;
|
|
|
|
}
|
2011-11-03 04:15:21 +00:00
|
|
|
template<typename... UTypes>
|
2011-10-30 14:10:24 +00:00
|
|
|
tuple& operator=(sprout::tuples::tuple<UTypes...>&& rhs) {
|
2011-11-03 04:15:21 +00:00
|
|
|
static_cast<inherited_type&>(*this) = sprout::move(rhs);
|
2011-10-30 14:10:24 +00:00
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
// tuple swap
|
2011-11-06 01:56:57 +00:00
|
|
|
void swap(tuple& other) SPROUT_NOEXCEPT_EXPR(SPROUT_NOEXCEPT_EXPR(inherited_type::swap(other))) {
|
2011-10-30 14:10:24 +00:00
|
|
|
inherited_type::swap(other);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
template<>
|
|
|
|
class tuple<> {
|
|
|
|
public:
|
|
|
|
// tuple swap
|
|
|
|
void swap(tuple&) SPROUT_NOEXCEPT {}
|
|
|
|
};
|
|
|
|
|
|
|
|
//
|
|
|
|
// ignore_t
|
|
|
|
//
|
|
|
|
struct ignore_t {
|
|
|
|
template<typename T>
|
|
|
|
ignore_t const& operator=(T const&) const {
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
//
|
|
|
|
// ignore
|
|
|
|
//
|
2012-06-15 15:08:42 +00:00
|
|
|
SPROUT_STATIC_CONSTEXPR ignore_t ignore{};
|
2011-10-30 14:10:24 +00:00
|
|
|
|
|
|
|
//
|
|
|
|
// make_tuple
|
|
|
|
//
|
|
|
|
template<typename... Types>
|
2012-04-04 13:23:41 +00:00
|
|
|
inline SPROUT_CONSTEXPR sprout::tuples::tuple<typename std::decay<Types>::type...> make_tuple(Types&&... args) {
|
2011-10-30 14:10:24 +00:00
|
|
|
return sprout::tuples::tuple<typename std::decay<Types>::type...>(sprout::forward<Types>(args)...);
|
|
|
|
}
|
|
|
|
//
|
|
|
|
// forward_as_tuple
|
|
|
|
//
|
|
|
|
template<typename... Types>
|
2012-04-04 13:23:41 +00:00
|
|
|
inline SPROUT_CONSTEXPR sprout::tuples::tuple<Types&&...> forward_as_tuple(Types&&... args) SPROUT_NOEXCEPT {
|
2011-10-30 14:10:24 +00:00
|
|
|
return sprout::tuples::tuple<Types&&...>(sprout::forward<Types>(args)...);
|
|
|
|
}
|
|
|
|
//
|
|
|
|
// tie
|
|
|
|
//
|
|
|
|
template<typename... Types>
|
|
|
|
inline sprout::tuples::tuple<Types&...> tie(Types&... args) SPROUT_NOEXCEPT {
|
|
|
|
return sprout::tuples::tuple<Types&...>(args...);
|
|
|
|
}
|
|
|
|
|
2011-10-31 11:10:07 +00:00
|
|
|
//
|
|
|
|
// swap
|
|
|
|
//
|
|
|
|
template<typename... Types>
|
|
|
|
inline void swap(
|
|
|
|
sprout::tuples::tuple<Types...>& lhs,
|
|
|
|
sprout::tuples::tuple<Types...>& rhs
|
|
|
|
) SPROUT_NOEXCEPT_EXPR(SPROUT_NOEXCEPT_EXPR(lhs.swap(rhs)))
|
|
|
|
{
|
|
|
|
lhs.swap(rhs);
|
|
|
|
}
|
|
|
|
|
2011-10-30 14:10:24 +00:00
|
|
|
namespace detail {
|
|
|
|
template<std::size_t I, typename T>
|
2012-05-19 09:46:38 +00:00
|
|
|
struct tuple_element_impl;
|
2011-10-30 14:10:24 +00:00
|
|
|
template<typename Head, typename... Tail>
|
2012-05-19 09:46:38 +00:00
|
|
|
struct tuple_element_impl<0, sprout::tuples::tuple<Head, Tail...> > {
|
2011-10-30 14:10:24 +00:00
|
|
|
public:
|
|
|
|
typedef Head type;
|
|
|
|
};
|
|
|
|
template<std::size_t I, typename Head, typename... Tail>
|
2012-05-19 09:46:38 +00:00
|
|
|
struct tuple_element_impl<I, sprout::tuples::tuple<Head, Tail...> >
|
2011-10-31 08:31:03 +00:00
|
|
|
: public sprout::tuples::detail::tuple_element_impl<I - 1, sprout::tuples::tuple<Tail...> >
|
2011-10-30 14:10:24 +00:00
|
|
|
{};
|
|
|
|
} // namespace detail
|
2011-10-31 08:31:03 +00:00
|
|
|
} // namespace tuples
|
|
|
|
|
|
|
|
using sprout::tuples::tuple;
|
|
|
|
using sprout::tuples::ignore;
|
|
|
|
using sprout::tuples::make_tuple;
|
|
|
|
using sprout::tuples::forward_as_tuple;
|
|
|
|
using sprout::tuples::tie;
|
2011-10-31 11:10:07 +00:00
|
|
|
using sprout::tuples::swap;
|
2011-10-31 08:31:03 +00:00
|
|
|
} // namespace sprout
|
|
|
|
|
|
|
|
namespace std {
|
|
|
|
//
|
|
|
|
// tuple_size
|
|
|
|
//
|
|
|
|
template<typename... Types>
|
2012-05-19 09:46:38 +00:00
|
|
|
struct tuple_size<sprout::tuples::tuple<Types...> >
|
2011-10-31 08:31:03 +00:00
|
|
|
: public std::integral_constant<std::size_t, sizeof...(Types)>
|
|
|
|
{};
|
|
|
|
|
|
|
|
//
|
|
|
|
// tuple_element
|
|
|
|
//
|
|
|
|
template<std::size_t I, typename... Types>
|
2012-05-19 09:46:38 +00:00
|
|
|
struct tuple_element<I, sprout::tuples::tuple<Types...> >
|
2011-10-31 08:31:03 +00:00
|
|
|
: public sprout::tuples::detail::tuple_element_impl<I, sprout::tuples::tuple<Types...> >
|
|
|
|
{};
|
|
|
|
} // namespace std
|
|
|
|
|
|
|
|
namespace sprout {
|
|
|
|
namespace tuples {
|
|
|
|
//
|
|
|
|
// tuple_size
|
|
|
|
//
|
|
|
|
template<typename T>
|
2012-05-19 09:46:38 +00:00
|
|
|
struct tuple_size
|
2011-10-31 08:31:03 +00:00
|
|
|
: public std::tuple_size<T>
|
|
|
|
{};
|
2012-04-13 12:23:49 +00:00
|
|
|
template<typename T>
|
2012-05-19 09:46:38 +00:00
|
|
|
struct tuple_size<T const>
|
2012-04-13 12:23:49 +00:00
|
|
|
: public sprout::tuples::tuple_size<T>
|
|
|
|
{};
|
|
|
|
template<typename T>
|
2012-05-19 09:46:38 +00:00
|
|
|
struct tuple_size<T volatile>
|
2012-04-13 12:23:49 +00:00
|
|
|
: public sprout::tuples::tuple_size<T>
|
|
|
|
{};
|
|
|
|
template<typename T>
|
2012-05-19 09:46:38 +00:00
|
|
|
struct tuple_size<T const volatile>
|
2012-04-13 12:23:49 +00:00
|
|
|
: public sprout::tuples::tuple_size<T>
|
|
|
|
{};
|
2011-10-31 08:31:03 +00:00
|
|
|
|
|
|
|
//
|
|
|
|
// tuple_element
|
|
|
|
//
|
|
|
|
template<std::size_t I, typename T>
|
2012-05-19 09:46:38 +00:00
|
|
|
struct tuple_element
|
2011-10-31 08:31:03 +00:00
|
|
|
: public std::tuple_element<I, T>
|
2011-10-30 14:10:24 +00:00
|
|
|
{};
|
2012-04-13 12:23:49 +00:00
|
|
|
template<std::size_t I, typename T>
|
2012-05-19 09:46:38 +00:00
|
|
|
struct tuple_element<I, T const>
|
2012-04-13 12:23:49 +00:00
|
|
|
: public sprout::tuples::tuple_element<I, T>
|
|
|
|
{};
|
|
|
|
template<std::size_t I, typename T>
|
2012-05-19 09:46:38 +00:00
|
|
|
struct tuple_element<I, T volatile>
|
2012-04-13 12:23:49 +00:00
|
|
|
: public sprout::tuples::tuple_element<I, T>
|
|
|
|
{};
|
|
|
|
template<std::size_t I, typename T>
|
2012-05-19 09:46:38 +00:00
|
|
|
struct tuple_element<I, T const volatile>
|
2012-04-13 12:23:49 +00:00
|
|
|
: public sprout::tuples::tuple_element<I, T>
|
|
|
|
{};
|
2011-10-30 14:10:24 +00:00
|
|
|
|
2011-10-31 08:31:03 +00:00
|
|
|
//
|
|
|
|
// get
|
|
|
|
//
|
|
|
|
template<std::size_t I, typename T>
|
2012-05-31 13:28:58 +00:00
|
|
|
SPROUT_CONSTEXPR auto
|
|
|
|
get(T&& t) SPROUT_NOEXCEPT_EXPR(SPROUT_NOEXCEPT_EXPR(std::get<I>(sprout::forward<T>(t))))
|
2011-10-31 11:10:07 +00:00
|
|
|
-> decltype(std::get<I>(sprout::forward<T>(t)))
|
2011-10-31 08:31:03 +00:00
|
|
|
{
|
|
|
|
return std::get<I>(sprout::forward<T>(t));
|
|
|
|
}
|
2011-10-30 14:10:24 +00:00
|
|
|
//
|
|
|
|
// get
|
|
|
|
//
|
|
|
|
namespace detail {
|
|
|
|
template<std::size_t I, typename Head, typename... Tail>
|
2012-05-31 13:28:58 +00:00
|
|
|
SPROUT_CONSTEXPR typename std::add_lvalue_reference<Head>::type
|
|
|
|
get_helper(sprout::tuples::detail::tuple_impl<I, Head, Tail...>& t) SPROUT_NOEXCEPT {
|
2011-10-30 14:10:24 +00:00
|
|
|
return sprout::tuples::detail::tuple_impl<I, Head, Tail...>::head(t);
|
|
|
|
}
|
|
|
|
template<std::size_t I, typename Head, typename... Tail>
|
2012-05-31 13:28:58 +00:00
|
|
|
SPROUT_CONSTEXPR typename std::add_lvalue_reference<typename std::add_const<Head>::type>::type
|
|
|
|
get_helper(sprout::tuples::detail::tuple_impl<I, Head, Tail...> const& t) SPROUT_NOEXCEPT {
|
2011-10-30 14:10:24 +00:00
|
|
|
return sprout::tuples::detail::tuple_impl<I, Head, Tail...>::head(t);
|
|
|
|
}
|
|
|
|
} // namespace detail
|
|
|
|
template<std::size_t I, typename... Types>
|
2012-05-31 13:28:58 +00:00
|
|
|
SPROUT_CONSTEXPR typename sprout::tuples::tuple_element<I, sprout::tuples::tuple<Types...> >::type&
|
|
|
|
get(sprout::tuples::tuple<Types...>& t) SPROUT_NOEXCEPT {
|
2011-10-30 14:10:24 +00:00
|
|
|
return sprout::tuples::detail::get_helper<I>(t);
|
|
|
|
}
|
|
|
|
template<std::size_t I, typename... Types>
|
2012-05-31 13:28:58 +00:00
|
|
|
SPROUT_CONSTEXPR typename sprout::tuples::tuple_element<I, sprout::tuples::tuple<Types...> >::type&&
|
|
|
|
get(sprout::tuples::tuple<Types...>&& t) SPROUT_NOEXCEPT {
|
2011-10-31 08:31:03 +00:00
|
|
|
return sprout::forward<typename sprout::tuples::tuple_element<I, sprout::tuples::tuple<Types...> >::type&&>(
|
2011-10-30 14:10:24 +00:00
|
|
|
sprout::tuples::get<I>(t)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
template<std::size_t I, typename... Types>
|
2012-05-31 13:28:58 +00:00
|
|
|
SPROUT_CONSTEXPR typename sprout::tuples::tuple_element<I, sprout::tuples::tuple<Types...> >::type const&
|
|
|
|
get(sprout::tuples::tuple<Types...> const& t) SPROUT_NOEXCEPT {
|
2011-10-30 14:10:24 +00:00
|
|
|
return sprout::tuples::detail::get_helper<I>(t);
|
|
|
|
}
|
|
|
|
} // namespace tuples
|
|
|
|
|
|
|
|
using sprout::tuples::tuple_size;
|
|
|
|
using sprout::tuples::tuple_element;
|
|
|
|
using sprout::tuples::get;
|
|
|
|
} // namespace sprout
|
|
|
|
|
2011-11-06 01:56:57 +00:00
|
|
|
#include <sprout/tuple/tuple_comparison.hpp>
|
|
|
|
|
2011-10-30 14:10:24 +00:00
|
|
|
#endif // #ifndef SPROUT_TUPLE_TUPLE_HPP
|