Create string representation of some value in hexadecimal view with big_endian order of digits.
String representation (hexadecimal digits) of value.
Typical usage:
import std.stdio : writeln; auto value = 0xabcdef01; asHexBE(value).writeln; // prints "abcdef01"
See Implementation
Create string representation of some value in hexadecimal view with big_endian order of digits.