| 6233 | return bitwise_impl(a, b, BitwiseBinary::Op::Or, "bitwise_or", s); |
| 6234 | } |
| 6235 | array operator|(const array& a, const array& b) { |
| 6236 | return bitwise_or(a, b); |
| 6237 | } |
| 6238 | |
| 6239 | array bitwise_xor(const array& a, const array& b, StreamOrDevice s /* = {} */) { |
| 6240 | return bitwise_impl(a, b, BitwiseBinary::Op::Xor, "bitwise_xor", s); |
nothing calls this directly
no test coverage detected