1
0
Fork 0
mirror of https://github.com/bolero-MURAKAMI/Sprout synced 2025-08-03 12:49:50 +00:00

change begin, end traits

This commit is contained in:
bolero-MURAKAMI 2016-04-15 01:47:14 +09:00
parent e5637554d1
commit a6d46d4ffa
9 changed files with 445 additions and 5 deletions

View file

@ -0,0 +1,34 @@
/*=============================================================================
Copyright (c) 2011-2016 Bolero MURAKAMI
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)
=============================================================================*/
#ifndef SPROUT_UTILITY_AS_NON_CONST_HPP
#define SPROUT_UTILITY_AS_NON_CONST_HPP
#include <type_traits>
#include <sprout/config.hpp>
namespace sprout {
//
// as_non_const
//
template<typename T>
inline SPROUT_CONSTEXPR typename std::conditional<
std::is_lvalue_reference<T>::value,
typename std::remove_const<typename std::remove_reference<T>::type>::type&,
typename std::remove_const<typename std::remove_reference<T>::type>::type&&
>::type
as_non_const(T&& t) {
typedef typename std::conditional<
std::is_lvalue_reference<T>::value,
typename std::remove_const<typename std::remove_reference<T>::type>::type&,
typename std::remove_const<typename std::remove_reference<T>::type>::type&&
>::type type;
return const_cast<type>(t);
}
} // namespace sprout
#endif // #ifndef SPROUT_UTILITY_AS_NON_CONST_HPP

View file

@ -11,6 +11,7 @@
#include <sprout/config.hpp>
#include <sprout/utility/as_lvalue.hpp>
#include <sprout/utility/as_const.hpp>
#include <sprout/utility/as_non_const.hpp>
#include <sprout/utility/lvalue_forward.hpp>
#include <sprout/utility/unmove.hpp>
#include <sprout/utility/pass_through.hpp>