/*============================================================================= Copyright (c) 2011-2014 Bolero MURAKAMI 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) =============================================================================*/ #ifndef SPROUT_WEED_OPERATOR_LOGICAL_NOT_HPP #define SPROUT_WEED_OPERATOR_LOGICAL_NOT_HPP #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 std::remove_reference::type >::value >::type > inline SPROUT_CONSTEXPR 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