I need to figure out the smallest unsigned integral type that can represent a particular number, in compile time. Something like this...
//////////////////////////////////////////////////////////////////////////
template<size_t Bits>
struct uint_least{};
template<>
struct uint_least<8>{ typedef std::uint8_t type; };
template<>
struct uint_least<16>{ typedef std::uint16_t type; };
//////////////////////////////////////////////////////////////////////////
template<size_t max>
struct uint_least_bits
{
static const size_t value = 14; // just a placeholder
};
//////////////////////////////////////////////////////////////////////////
template<size_t max>
class A
{
typedef typename uint_least<uint_least_bits<max>::value>::type underlying_type;
underlying_type m_X;
};
uint_least is meant to give you the smallest unsigned integral type that is at least Bits large and it should work for any value up to 64 (not just 8, 16, 32, 64 but also 1, 4, 13, etc).
uint_least_bits is meant to give you the minimum number of bits needed to represent max.
- How can I implement
uint_least? - How can I implement
uint_least_bits? - What types should
bits,min, andmaxbe? If the answer is a template type, how can I guard against invalid input?
The exact structuring of the traits doesn't matter. Feel free to scrap what I provided. I just need to provide a number and get back the smallest unsigned integral type that can hold it.
decltypeon your integral constant. – Kerrek SB Aug 22 '12 at 23:22int_least_bits<255, 256>::valuebe 1 or 9? – GManNickG Aug 22 '12 at 23:22decltypewon't give you the smallest type for values small enough to promote toint. For example,decltype(1)isint, not one of thechartypes. – Keith Thompson Aug 23 '12 at 0:49