{
    "Function": "_byteHex",
    "File": "contracts/contracts/core/connext/libraries/Encoding.sol",
    "Parent Contracts": [],
    "High-Level Calls": [],
    "Internal Calls": [
        "_nibbleHex",
        "_nibbleHex"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function _byteHex(uint8 _byte) private pure returns (uint16 _encoded) {\n    _encoded |= _nibbleHex(_byte >> 4); // top 4 bits\n    _encoded <<= 8;\n    _encoded |= _nibbleHex(_byte); // lower 4 bits\n  }"
}