| 238 | } |
| 239 | |
| 240 | static inline constexpr shf operator|(shf a, shf b) |
| 241 | { |
| 242 | return (shf)((std::uint64_t)a | (std::uint64_t)b); |
| 243 | } |
| 244 | |
| 245 | static inline constexpr shf operator^(shf a, shf b) |
| 246 | { |
nothing calls this directly
no outgoing calls
no test coverage detected