{
    "Function": "appendNumber",
    "File": "contracts/lib/Strings.sol",
    "Parent Contracts": [],
    "High-Level Calls": [],
    "Internal Calls": [
        "abi.encodePacked()"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function appendNumber(string memory str, uint i) public pure returns (string memory result) {\n        return string(abi.encodePacked(str,i+uint(48)));\n    }"
}