ByteConverter.hexEncode

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

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

Parameters

input_ const(void)[]

the array of bytes to represent

Return Value

Type: mstring

A newed char[] containing the hex digits representing the input

Meta