mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2024-11-14 10:39:05 +00:00
48 lines
1.6 KiB
C++
48 lines
1.6 KiB
C++
/*=============================================================================
|
|
Copyright (c) 2011-2014 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_WEED_EXPR_MAKE_TERMINAL_HPP
|
|
#define SPROUT_WEED_EXPR_MAKE_TERMINAL_HPP
|
|
|
|
#include <type_traits>
|
|
#include <sprout/config.hpp>
|
|
#include <sprout/string.hpp>
|
|
#include <sprout/utility/forward.hpp>
|
|
#include <sprout/weed/traits/type/is_c_str.hpp>
|
|
#include <sprout/weed/traits/expr/terminal_of.hpp>
|
|
|
|
namespace sprout {
|
|
namespace weed {
|
|
//
|
|
// make_terminal
|
|
//
|
|
template<typename Arg>
|
|
inline SPROUT_CONSTEXPR typename std::enable_if<
|
|
!sprout::weed::traits::is_c_str<
|
|
typename std::remove_reference<Arg>::type
|
|
>::value,
|
|
typename sprout::weed::traits::terminal_of<Arg>::type
|
|
>::type make_terminal(Arg&& arg) {
|
|
return typename sprout::weed::traits::terminal_of<Arg>::type(
|
|
SPROUT_FORWARD(Arg, arg)
|
|
);
|
|
}
|
|
template<typename Arg>
|
|
inline SPROUT_CONSTEXPR typename std::enable_if<
|
|
sprout::weed::traits::is_c_str<
|
|
typename std::remove_reference<Arg>::type
|
|
>::value,
|
|
typename sprout::weed::traits::terminal_of<Arg>::type
|
|
>::type make_terminal(Arg&& arg) {
|
|
return typename sprout::weed::traits::terminal_of<Arg>::type(
|
|
sprout::to_string(SPROUT_FORWARD(Arg, arg))
|
|
);
|
|
}
|
|
} // namespace weed
|
|
} // namespace sprout
|
|
|
|
#endif // #ifndef SPROUT_WEED_EXPR_MAKE_TERMINAL_HPP
|