#include <SealSignal.h>
Public Types | |
| enum | { Bits = sizeof (T) * CHAR_BIT } |
Number of bits in | |
| enum | { Bytes = Bits / 8 + ((Bits % 8) > 0) } |
Number of 8-bit bytes in | |
| enum | { Digits = (Bits * 30103) / 100000 + 1 } |
Number of base-10 digits in | |
| enum | { HexDigits = Bits / 4 + ((Bits % 4) > 0) } |
Number of base-16 digits in | |
Describe the bit features of an integral type T.
1.6.1