2012-07-15 12:20:56 +00:00
|
|
|
#ifndef SPROUT_UUID_TUPLE_HPP
|
|
|
|
#define SPROUT_UUID_TUPLE_HPP
|
2011-10-31 08:31:03 +00:00
|
|
|
|
|
|
|
#include <cstddef>
|
2012-06-22 10:14:21 +00:00
|
|
|
#include <tuple>
|
2011-10-31 08:31:03 +00:00
|
|
|
#include <type_traits>
|
|
|
|
#include <sprout/config.hpp>
|
2012-05-31 13:28:58 +00:00
|
|
|
#include <sprout/utility/move.hpp>
|
2012-09-29 09:41:13 +00:00
|
|
|
#include <sprout/tuple/tuple/get.hpp>
|
2011-10-31 08:31:03 +00:00
|
|
|
#include <sprout/uuid/uuid.hpp>
|
|
|
|
|
2012-10-05 15:58:56 +00:00
|
|
|
namespace sprout {
|
2012-09-29 09:41:13 +00:00
|
|
|
//
|
|
|
|
// tuple_get
|
|
|
|
//
|
|
|
|
template<std::size_t I>
|
|
|
|
inline SPROUT_CONSTEXPR sprout::uuids::uuid::value_type&
|
|
|
|
tuple_get(sprout::uuids::uuid& t) SPROUT_NOEXCEPT {
|
|
|
|
static_assert(I < 16, "tuple_get: index out of range");
|
|
|
|
return t[I];
|
|
|
|
}
|
|
|
|
template<std::size_t I>
|
|
|
|
inline SPROUT_CONSTEXPR sprout::uuids::uuid::value_type const&
|
|
|
|
tuple_get(sprout::uuids::uuid const& t) SPROUT_NOEXCEPT {
|
|
|
|
static_assert(I < 16, "tuple_get: index out of range");
|
|
|
|
return t[I];
|
|
|
|
}
|
|
|
|
template<std::size_t I>
|
|
|
|
inline SPROUT_CONSTEXPR sprout::uuids::uuid::value_type&&
|
|
|
|
tuple_get(sprout::uuids::uuid&& t) SPROUT_NOEXCEPT {
|
|
|
|
return sprout::move(sprout::tuples::get<I>(t));
|
|
|
|
}
|
2011-10-31 08:31:03 +00:00
|
|
|
} // namespace sprout
|
|
|
|
|
2012-06-22 10:14:21 +00:00
|
|
|
namespace std {
|
2012-11-18 14:32:36 +00:00
|
|
|
#if defined(__clang__)
|
|
|
|
# pragma clang diagnostic push
|
|
|
|
# pragma clang diagnostic ignored "-Wmismatched-tags"
|
|
|
|
#endif
|
2012-06-22 10:14:21 +00:00
|
|
|
//
|
|
|
|
// tuple_size
|
|
|
|
//
|
|
|
|
template<>
|
|
|
|
struct tuple_size<sprout::uuids::uuid> {
|
|
|
|
public:
|
|
|
|
typedef std::integral_constant<std::size_t, 16> type;
|
|
|
|
SPROUT_STATIC_CONSTEXPR std::size_t value = type::value;
|
|
|
|
};
|
|
|
|
|
|
|
|
//
|
|
|
|
// tuple_element
|
|
|
|
//
|
|
|
|
template<std::size_t I>
|
|
|
|
struct tuple_element<I, sprout::uuids::uuid> {
|
|
|
|
static_assert(I < 16, "tuple_element<>: index out of range");
|
2013-01-25 06:14:29 +00:00
|
|
|
public:
|
2012-06-22 10:14:21 +00:00
|
|
|
typedef sprout::uuids::uuid::value_type type;
|
|
|
|
};
|
2012-11-18 14:32:36 +00:00
|
|
|
#if defined(__clang__)
|
|
|
|
# pragma clang diagnostic pop
|
|
|
|
#endif
|
2012-06-22 10:14:21 +00:00
|
|
|
} // namespace std
|
|
|
|
|
2012-07-15 12:20:56 +00:00
|
|
|
#endif // #ifndef SPROUT_UUID_TUPLE_HPP
|