Sprout/sprout/weed/expr/make_expr.hpp

33 lines
1.1 KiB
C++
Raw Normal View History

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)
=============================================================================*/
2011-11-13 08:54:38 +00:00
#ifndef SPROUT_WEED_EXPR_MAKE_EXPR_HPP
#define SPROUT_WEED_EXPR_MAKE_EXPR_HPP
#include <type_traits>
#include <sprout/config.hpp>
#include <sprout/utility/forward.hpp>
#include <sprout/weed/expr/make_terminal_or_expr.hpp>
#include <sprout/weed/traits/expr/expr_of.hpp>
namespace sprout {
namespace weed {
//
// make_expr
//
template<typename Tag, typename... Args>
inline SPROUT_CONSTEXPR typename sprout::weed::traits::expr_of<Tag, Args...>::type
2011-11-13 08:54:38 +00:00
make_expr(Args&&... args) {
return typename sprout::weed::traits::expr_of<Tag, Args...>::type(
sprout::weed::make_terminal_or_expr(SPROUT_FORWARD(Args, args))...
2011-11-13 08:54:38 +00:00
);
}
} // namespace weed
} // namespace sprout
#endif // #ifndef SPROUT_WEED_EXPR_MAKE_EXPR_HPP