4#ifndef TETL_MATH_ILOG2_HPP
5#define TETL_MATH_ILOG2_HPP
7#include <etl/_concepts/integral.hpp>
11template <integral Int>
12[[nodiscard]]
constexpr auto ilog2(Int x)
noexcept -> Int
15 for (; x > Int(1); x >>= Int(1)) {
Definition adjacent_find.hpp:9
constexpr auto ilog2(Int x) noexcept -> Int
Definition ilog2.hpp:12