| 1037 | }; |
| 1038 | |
| 1039 | constexpr send_flags operator|(send_flags a, send_flags b) noexcept |
| 1040 | { |
| 1041 | return detail::enum_bit_or(a, b); |
| 1042 | } |
| 1043 | constexpr send_flags operator&(send_flags a, send_flags b) noexcept |
| 1044 | { |
| 1045 | return detail::enum_bit_and(a, b); |
nothing calls this directly
no test coverage detected