UInt.fromHexString

Constructs a UInt from a hexadecimal string, with optional underscore support via allowUnderscores.

struct UInt(size_t size)
static
UInt!size
fromHexString
(
bool allowUnderscores = false
)
(
scope const(char)[] str
)
if (
size % (size_t.sizeof * 8) == 0 &&
size >= size_t.sizeof * 8
)