| 36 | |
| 37 | template<typename IntType> |
| 38 | inline fl::u8 countr_zero(IntType value) FL_NOEXCEPT { |
| 39 | return static_cast<fl::u8>(__builtin_ctz(value)); |
| 40 | } |
| 41 | |
| 42 | /// A simple fixed-size Bitset implementation similar to std::Bitset. |
| 43 | template <fl::u32 N> class bitset_fixed { |
no outgoing calls
no test coverage detected