← Back
Editing: xor_.hpp
#ifndef PYTHONIC_OPERATOR_XOR_HPP #define PYTHONIC_OPERATOR_XOR_HPP #include "pythonic/include/operator_/xor_.hpp" #include "pythonic/operator_/overloads.hpp" #include "pythonic/utils/functor.hpp" PYTHONIC_NS_BEGIN namespace operator_ { template <class A, class B> auto xor_(A &&a, B &&b) -> decltype(std::forward<A>(a) ^ std::forward<B>(b)) { return std::forward<A>(a) ^ std::forward<B>(b); } DEFINE_ALL_OPERATOR_OVERLOADS_IMPL(xor_, ^, true) } PYTHONIC_NS_END #endif
Save File
Cancel