Sprout/sprout/weed/operator/bitwise_or.hpp

44 lines
1.2 KiB
C++
Raw Normal View History

2011-11-13 08:54:38 +00:00
#ifndef SPROUT_WEED_OPERATOR_BITWISE_OR_HPP
#define SPROUT_WEED_OPERATOR_BITWISE_OR_HPP
#include <type_traits>
#include <sprout/config.hpp>
#include <sprout/utility/forward.hpp>
2013-03-24 08:07:20 +00:00
#include <sprout/type_traits/remove_shallow_cvref.hpp>
2011-11-13 08:54:38 +00:00
#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>
namespace sprout {
namespace weed {
//
// operator|
//
template<
typename Arg1,
typename Arg2,
typename = typename std::enable_if<
sprout::weed::traits::is_parser<
2013-03-24 08:07:20 +00:00
typename sprout::remove_shallow_cvref<Arg1>::type
2011-11-13 08:54:38 +00:00
>::value
&& sprout::weed::traits::is_parser<
2013-03-24 08:07:20 +00:00
typename sprout::remove_shallow_cvref<Arg2>::type
2011-11-13 08:54:38 +00:00
>::value
>::type
>
inline SPROUT_CONSTEXPR typename sprout::weed::traits::expr_of<
2011-11-13 08:54:38 +00:00
sprout::weed::tag::bitwise_or,
Arg1,
Arg2
>::type operator|(Arg1&& arg1, Arg2&& arg2) {
return sprout::weed::make_expr<sprout::weed::tag::bitwise_or>(
sprout::forward<Arg1>(arg1),
sprout::forward<Arg2>(arg2)
);
}
} // namespace weed
} // namespace sprout
#endif // #ifndef SPROUT_WEED_OPERATOR_BITWISE_OR_HPP