Sprout/sprout/weed/traits/expr/expr_of.hpp

33 lines
859 B
C++
Raw Normal View History

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>
2013-03-24 08:07:20 +00:00
#include <sprout/type_traits/remove_shallow_cvref.hpp>
#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<
typename sprout::remove_shallow_cvref<Args>::type
>::type...
>
>
{};
2011-11-13 08:54:38 +00:00
} // namespace traits
} // namespace weed
} // namespace sprout
#endif // #ifndef SPROUT_WEED_TRAITS_EXPR_EXPR_OF_HPP