2011-10-31 08:31:03 +00:00
|
|
|
#ifndef SPROUT_TUPLE_UUID_HPP
|
|
|
|
#define SPROUT_TUPLE_UUID_HPP
|
|
|
|
|
|
|
|
#include <cstddef>
|
|
|
|
#include <type_traits>
|
|
|
|
#include <sprout/config.hpp>
|
2012-05-31 13:28:58 +00:00
|
|
|
#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>
|
2012-05-31 13:28:58 +00:00
|
|
|
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>
|
2012-05-31 13:28:58 +00:00
|
|
|
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>
|
2012-05-31 13:28:58 +00:00
|
|
|
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
|
2011-10-31 11:10:07 +00:00
|
|
|
|
|
|
|
using sprout::tuples::get;
|
2011-10-31 08:31:03 +00:00
|
|
|
} // namespace sprout
|
|
|
|
|
|
|
|
#endif // #ifndef SPROUT_TUPLE_UUID_HPP
|