String representation (hexadecimal digits) of value.
Typical usage:
import std.stdio : writeln; auto value = 0xabcdef01; value.asHexWithOrder!(BYTE_ORDER.BIG_ENDIAN).writeln; // prints "abcdef01" value.asHexWithOrder!(BYTE_ORDER.LITTLE_ENDIAN).writeln; // prints "01efcdab"
Create string representation of some value in hexadecimal view with specified byte order.