2012-04-04 08:48:02 +00:00
|
|
|
#ifndef SPROUT_UTILITY_AS_CONST_HPP
|
|
|
|
#define SPROUT_UTILITY_AS_CONST_HPP
|
|
|
|
|
2012-07-07 05:58:46 +00:00
|
|
|
#include <type_traits>
|
2012-04-04 08:48:02 +00:00
|
|
|
#include <sprout/config.hpp>
|
2012-07-07 05:58:46 +00:00
|
|
|
#include <sprout/utility/forward.hpp>
|
2012-04-04 08:48:02 +00:00
|
|
|
|
|
|
|
namespace sprout {
|
|
|
|
//
|
|
|
|
// as_const
|
|
|
|
//
|
|
|
|
template<typename T>
|
2012-07-07 05:58:46 +00:00
|
|
|
inline SPROUT_CONSTEXPR typename std::conditional<
|
|
|
|
std::is_lvalue_reference<T>::value,
|
|
|
|
typename std::remove_reference<T>::type const&,
|
|
|
|
typename std::remove_reference<T>::type const&&
|
|
|
|
>::type
|
|
|
|
as_const(T&& t) {
|
|
|
|
return sprout::forward<T>(t);
|
2012-04-04 08:48:02 +00:00
|
|
|
}
|
|
|
|
} // namespace sprout
|
|
|
|
|
|
|
|
#endif // #ifndef SPROUT_UTILITY_AS_CONST_HPP
|