#ifndef SPROUT_WEED_OPERATOR_BITWISE_OR_HPP #define SPROUT_WEED_OPERATOR_BITWISE_OR_HPP #include #include #include #include #include #include #include #include namespace sprout { namespace weed { // // operator| // template< typename Arg1, typename Arg2, typename = typename std::enable_if< sprout::weed::traits::is_parser< typename sprout::weed::detail::uncvref::type >::value && sprout::weed::traits::is_parser< typename sprout::weed::detail::uncvref::type >::value >::type > inline SPROUT_CONSTEXPR typename sprout::weed::traits::expr_of< sprout::weed::tag::bitwise_or, Arg1, Arg2 >::type operator|(Arg1&& arg1, Arg2&& arg2) { return sprout::weed::make_expr( sprout::forward(arg1), sprout::forward(arg2) ); } } // namespace weed } // namespace sprout #endif // #ifndef SPROUT_WEED_OPERATOR_BITWISE_OR_HPP