Searched defs:_Bitwise_xor (Results 1 – 1 of 1) sorted by relevance
246 template<typename _Tp> struct _Bitwise_xor : binary_function<_Tp,_Tp,_Tp> { struct247 _Tp operator() (_Tp __x, _Tp __y) const { return __x ^ __y; } in operator()