asHexBE

Create string representation of some value in hexadecimal view with big_endian order of digits.

Return Value

String representation (hexadecimal digits) of value.

Typical usage:

import std.stdio : writeln;

auto value = 0xabcdef01;
asHexBE(value).writeln; // prints "abcdef01"

Meta