2013-08-08 09:54:33 +00:00
|
|
|
/*=============================================================================
|
2015-01-10 10:13:57 +00:00
|
|
|
Copyright (c) 2011-2015 Bolero MURAKAMI
|
2013-08-08 09:54:33 +00:00
|
|
|
https://github.com/bolero-MURAKAMI/Sprout
|
|
|
|
|
|
|
|
Distributed under the Boost Software License, Version 1.0. (See accompanying
|
|
|
|
file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
|
|
=============================================================================*/
|
2012-10-08 05:14:59 +00:00
|
|
|
#ifndef SPROUT_UTILITY_PAIR_FIRST_HPP
|
|
|
|
#define SPROUT_UTILITY_PAIR_FIRST_HPP
|
|
|
|
|
|
|
|
#include <sprout/config.hpp>
|
|
|
|
#include <sprout/tuple/tuple/get.hpp>
|
|
|
|
#include <sprout/utility/forward.hpp>
|
2013-02-07 15:49:47 +00:00
|
|
|
#include <sprout/utility/pair/tuple.hpp>
|
2012-10-08 05:14:59 +00:00
|
|
|
|
|
|
|
namespace sprout {
|
|
|
|
//
|
|
|
|
// first
|
|
|
|
//
|
|
|
|
template<typename T>
|
|
|
|
inline SPROUT_CONSTEXPR auto
|
|
|
|
first(T&& t)
|
2014-08-14 13:55:49 +00:00
|
|
|
SPROUT_NOEXCEPT_IF_EXPR(sprout::tuples::get<0>(SPROUT_FORWARD(T, t)))
|
2014-02-22 07:32:51 +00:00
|
|
|
-> decltype(sprout::tuples::get<0>(SPROUT_FORWARD(T, t)))
|
2012-10-08 05:14:59 +00:00
|
|
|
{
|
2014-02-22 07:32:51 +00:00
|
|
|
return sprout::tuples::get<0>(SPROUT_FORWARD(T, t));
|
2012-10-08 05:14:59 +00:00
|
|
|
}
|
|
|
|
} // namespace sprout
|
|
|
|
|
|
|
|
#endif // #ifndef SPROUT_UTILITY_PAIR_FIRST_HPP
|