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