2013-08-08 09:54:33 +00:00
|
|
|
/*=============================================================================
|
2016-02-25 09:48:28 +00:00
|
|
|
Copyright (c) 2011-2016 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_TRAITS_EXPR_EXPR_OF_HPP
|
|
|
|
#define SPROUT_WEED_TRAITS_EXPR_EXPR_OF_HPP
|
|
|
|
|
|
|
|
#include <type_traits>
|
|
|
|
#include <sprout/config.hpp>
|
2013-03-25 03:43:47 +00:00
|
|
|
#include <sprout/type_traits/identity.hpp>
|
2012-05-31 13:28:58 +00:00
|
|
|
#include <sprout/weed/expr/expr_fwd.hpp>
|
2011-11-13 08:54:38 +00:00
|
|
|
#include <sprout/weed/traits/expr/terminal_or_expr_of.hpp>
|
|
|
|
|
|
|
|
namespace sprout {
|
|
|
|
namespace weed {
|
|
|
|
namespace traits {
|
|
|
|
//
|
|
|
|
// expr_of
|
|
|
|
//
|
|
|
|
template<typename Tag, typename... Args>
|
2013-03-25 03:43:47 +00:00
|
|
|
struct expr_of
|
|
|
|
: public sprout::identity<
|
|
|
|
sprout::weed::expr<
|
|
|
|
Tag,
|
|
|
|
typename sprout::weed::traits::terminal_or_expr_of<
|
2013-03-26 17:02:16 +00:00
|
|
|
typename std::remove_reference<Args>::type
|
2013-03-25 03:43:47 +00:00
|
|
|
>::type...
|
|
|
|
>
|
|
|
|
>
|
|
|
|
{};
|
2011-11-13 08:54:38 +00:00
|
|
|
} // namespace traits
|
|
|
|
} // namespace weed
|
|
|
|
} // namespace sprout
|
|
|
|
|
|
|
|
#endif // #ifndef SPROUT_WEED_TRAITS_EXPR_EXPR_OF_HPP
|