YEnc.decode

You're seeing just the function decode, go back to YEnc module for more information.

Specs

decode(binary()) :: binary()

Performs raw yEnc decoding on data returning the result.

Examples

iex> YEnc.decode("")
""

iex> YEnc.decode("o|vkxq")
"ERLANG"

iex> YEnc.decode(<<111, 124, 118, 107, 120, 113>>)
"ERLANG"