Sprout/sprout/uuid/uuid_tuple.hpp

61 lines
1.5 KiB
C++
Raw Normal View History

#ifndef SPROUT_UUID_UUID_TUPLE_HPP
#define SPROUT_UUID_UUID_TUPLE_HPP
2011-10-31 08:31:03 +00:00
#include <cstddef>
#include <tuple>
2011-10-31 08:31:03 +00:00
#include <type_traits>
#include <sprout/config.hpp>
#include <sprout/utility/move.hpp>
2011-10-31 08:31:03 +00:00
#include <sprout/uuid/uuid.hpp>
namespace sprout {
namespace tuples {
//
// get
//
template<std::size_t I>
inline SPROUT_CONSTEXPR sprout::uuids::uuid::value_type&
get(sprout::uuids::uuid& t) SPROUT_NOEXCEPT {
2011-10-31 08:31:03 +00:00
static_assert(I < 16, "get: index out of range");
return t[I];
}
template<std::size_t I>
inline SPROUT_CONSTEXPR sprout::uuids::uuid::value_type const&
get(sprout::uuids::uuid const& t) SPROUT_NOEXCEPT {
2011-10-31 08:31:03 +00:00
static_assert(I < 16, "get: index out of range");
return t[I];
}
template<std::size_t I>
inline SPROUT_CONSTEXPR sprout::uuids::uuid::value_type&&
get(sprout::uuids::uuid&& t) SPROUT_NOEXCEPT {
return sprout::move(sprout::tuples::get<I>(t));
2011-10-31 08:31:03 +00:00
}
} // namespace tuples
using sprout::tuples::get;
2011-10-31 08:31:03 +00:00
} // namespace sprout
namespace std {
//
// 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> {
public:
static_assert(I < 16, "tuple_element<>: index out of range");
typedef sprout::uuids::uuid::value_type type;
};
} // namespace std
#endif // #ifndef SPROUT_UUID_UUID_TUPLE_HPP