asHexLE

Create string representation of some value in hexadecimal view with little_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 "01efcdab"

Meta