hexStrUpper

Converts an unsigned type into a fixed width 8 digits hex string using upper-case letters.

@safe pure nothrow @nogc
char[2 * U.sizeof]
hexStrUpper
(
U
)
(
U n
)
if (
isUnsigned!U
)

Parameters

n U

the number to convert

Return Value

Type: char[2 * U.sizeof]

hexadecimal representation of n, upper-case letters

Meta