mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2025-07-16 15:14:13 +00:00
sprout/weed.hpp 追加
This commit is contained in:
parent
8103682fdb
commit
ecfc2b297a
96 changed files with 5127 additions and 0 deletions
25
sprout/weed/expr/make_expr.hpp
Normal file
25
sprout/weed/expr/make_expr.hpp
Normal file
|
@ -0,0 +1,25 @@
|
|||
#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>
|
||||
SPROUT_CONSTEXPR inline typename sprout::weed::traits::expr_of<Tag, Args...>::type
|
||||
make_expr(Args&&... args) {
|
||||
return typename sprout::weed::traits::expr_of<Tag, Args...>::type(
|
||||
sprout::weed::make_terminal_or_expr(sprout::forward<Args>(args))...
|
||||
);
|
||||
}
|
||||
} // namespace weed
|
||||
} // namespace sprout
|
||||
|
||||
#endif // #ifndef SPROUT_WEED_EXPR_MAKE_EXPR_HPP
|
Loading…
Add table
Add a link
Reference in a new issue