| 2583 | // Checks if the `index` bit of `val` is set. |
| 2584 | template <class T> |
| 2585 | constexpr bool IsSet(const T &val, unsigned index) { |
| 2586 | return (val & (1 << index)) != 0; |
| 2587 | } |
| 2588 | |
| 2589 | // Sets the `index` bit of `val`. |
| 2590 | template <class T> |
no outgoing calls
no test coverage detected