Enums
Functions
Compute the minimum number of bits to represent a container with t items.
This is basically ceil(log2(t))
as a constant (compile time computable) function.
You can use it where a const generic (bit width) argument is required.
Type Definitions
A type alias for a simple bool. You can use them interchangeably.