import "cuelang.org/go/pkg/encoding/hex"
Decode returns the bytes represented by the hexadecimal string s.
Decode expects that src contains only hexadecimal characters and that src has even length. If the input is malformed, Decode returns the bytes decoded before the error.
DecodedLen returns the length of a decoding of x source bytes. Specifically, it returns x / 2.
Dump returns a string that contains a hex dump of the given data. The format of the hex dump matches the output of `hexdump -C` on the command line.
Encode returns the hexadecimal encoding of src.
EncodedLen returns the length of an encoding of n source bytes. Specifically, it returns n * 2.
Package hex imports 3 packages (graph) and is imported by 2 packages. Updated 2021-01-24. Refresh now. Tools for package owners.