Sprout/sprout/utility/pair/first.hpp

24 lines
634 B
C++
Raw Normal View History

#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>
namespace sprout {
//
// first
//
template<typename T>
inline SPROUT_CONSTEXPR auto
first(T&& t)
SPROUT_NOEXCEPT_EXPR(SPROUT_NOEXCEPT_EXPR(sprout::tuples::get<0>(sprout::forward<T>(t))))
-> decltype(sprout::tuples::get<0>(sprout::forward<T>(t)))
{
return sprout::tuples::get<0>(sprout::forward<T>(t));
}
} // namespace sprout
#endif // #ifndef SPROUT_UTILITY_PAIR_FIRST_HPP