| 681 | // E.g.: MaskLow<char>(5) -> 0b00011111: |
| 682 | template <typename T> |
| 683 | constexpr T MaskLow(unsigned char SignificantBits) |
| 684 | { |
| 685 | return static_cast<T>((1ULL << SignificantBits) - 1); |
| 686 | } |
| 687 | |
| 688 | // E.g.: MaskHigh<char>(3) -> 0b11100000: |
| 689 | template <typename T> |
nothing calls this directly
no outgoing calls
no test coverage detected