/*Package rlp implements the RLP serialization format.The purpose of RLP (Recursive Linear Prefix) qis to encode arbitrarilynested arrays of binary data, and RLP is the main encoding method usedto serialize objects in Ethereum. The only purpose of RLP is to encodestructure; encoding specific atomic data types (eg. strings, ints,floats) is left up to higher-order protocols; in Ethereum integersmust be represented in big endian binary form with no leading zeroes(thus making the integer value zero be equivalent to the empty bytearray).RLP values are distinguished by a type tag. The type tag precedes thevalue in the input stream and defines the size and kind of the bytesthat follow.*/packagerlp