#ifndef SPROUT_WEED_OPERATOR_LOGICAL_NOT_HPP #define SPROUT_WEED_OPERATOR_LOGICAL_NOT_HPP #include #include #include #include #include #include #include #include namespace sprout { namespace weed { // // operator! // template< typename Arg, typename = typename std::enable_if< sprout::weed::traits::is_parser< typename sprout::weed::detail::uncvref::type >::value >::type > SPROUT_CONSTEXPR inline typename sprout::weed::traits::expr_of< sprout::weed::tag::logical_not, Arg >::type operator!(Arg&& arg) { return sprout::weed::make_expr( sprout::forward(arg) ); } } // namespace weed } // namespace sprout #endif // #ifndef SPROUT_WEED_OPERATOR_LOGICAL_NOT_HPP