| 1045 | return detail::enum_bit_and(a, b); |
| 1046 | } |
| 1047 | constexpr send_flags operator^(send_flags a, send_flags b) noexcept |
| 1048 | { |
| 1049 | return detail::enum_bit_xor(a, b); |
| 1050 | } |
| 1051 | constexpr send_flags operator~(send_flags a) noexcept |
| 1052 | { |
| 1053 | return detail::enum_bit_not(a); |
nothing calls this directly
no test coverage detected