Sprout/sprout/weed/operator/negate.hpp
bolero-MURAKAMI a7698fa6e9 sprout/weed/context/parse_context/operator/minus.hpp 追加
sprout/weed/context/parse_context/operator/negate.hpp 追加
2011-11-14 19:45:59 +09:00

37 lines
1,010 B
C++

#ifndef SPROUT_WEED_OPERATOR_NEGATE_HPP
#define SPROUT_WEED_OPERATOR_NEGATE_HPP
#include <type_traits>
#include <sprout/config.hpp>
#include <sprout/utility/forward.hpp>
#include <sprout/weed/expr/tag.hpp>
#include <sprout/weed/expr/make_expr.hpp>
#include <sprout/weed/traits/expr/expr_of.hpp>
#include <sprout/weed/traits/parser/is_parser.hpp>
#include <sprout/weed/detail/uncvref.hpp>
namespace sprout {
namespace weed {
//
// operator-
//
template<
typename Arg,
typename = typename std::enable_if<
sprout::weed::traits::is_parser<
typename sprout::weed::detail::uncvref<Arg>::type
>::value
>::type
>
SPROUT_CONSTEXPR inline typename sprout::weed::traits::expr_of<
sprout::weed::tag::negate,
Arg
>::type operator-(Arg&& arg) {
return sprout::weed::make_expr<sprout::weed::tag::negate>(
sprout::forward<Arg>(arg)
);
}
} // namespace weed
} // namespace sprout
#endif // #ifndef SPROUT_WEED_OPERATOR_NEGATE_HPP