carb::cpp20::bit_floor

Defined in carb/cpp20/Bit.h

template<class T, std::enable_if_t<std::is_integral<T>::value && std::is_unsigned<T>::value, bool> = false>
constexpr T carb::cpp20::bit_floor(T val)

Finds the largest integral power of two not greater than the given value.

See

https://en.cppreference.com/w/cpp/numeric/bit_floor

Template Parameters

T – An unsigned integral type

Parameters

val – An unsigned integral value

Returns

The largest integral power of two not greater than val.