solang-parser 0.2.1

Solang Solidity Parser
Documentation
1
2
3
4
5
6
7
contract C {
    bytes s;
    function f(bytes calldata c, string memory m) public view returns (bytes3, bytes8, bytes16, bytes32) {
        return (bytes3(c[0:3]), bytes8(s), bytes16(c), bytes32(bytes(m)));
    }
}
// ----