ByteConverter.hexEncode

Takes an array and converts each byte to its hex representation.

  1. mstring hexEncode(const(void)[] input_)
  2. mstring hexEncode(const(void)[] input_, mstring output)
    struct ByteConverter
    static
    hexEncode
    (
    const(void)[] input_
    ,)

Parameters

input_ const(void)[]

the array of bytes to represent

output mstring

the buffer into which the results will be written

Return Value

Type: mstring

A slice of output containing the hex digits representing the input

Meta