Skip to content

Latest commit

 

History

History
9 lines (6 loc) · 403 Bytes

stdlib-hex.md

File metadata and controls

9 lines (6 loc) · 403 Bytes

Hex Module Documentation

The hex module provides functions for encoding and decoding data using hexadecimal representation, as well as for generating a hex dump of the data.

Functions

  • encode(src): returns the hexadecimal encoding of src.
  • decode(s): returns the bytes represented by the hexadecimal string s.
  • dump(src): returns a string containing the hex dump of the input data.