# Functions
Bytes1 returns integer x to bytes in little-endian format, x.to_bytes(1, 'big').
Bytes2 returns integer x to bytes in little-endian format, x.to_bytes(2, 'big').
Bytes3 returns integer x to bytes in little-endian format, x.to_bytes(3, 'big').
Bytes32 returns integer x to bytes in little-endian format, x.to_bytes(8, 'little').
Bytes4 returns integer x to bytes in little-endian format, x.to_bytes(4, 'little').
Bytes8 returns integer x to bytes in little-endian format, x.to_bytes(8, 'little').
FromBytes4 returns an integer which is stored in the little-endian format(4, 'little') from a byte array.
FromBytes8 returns an integer which is stored in the little-endian format(8, 'little') from a byte array.
LowerThan returns true if byte slice x is lower than byte slice y.
ToBytes returns integer x to bytes in little-endian format at the specified length.
ToBytes32 is a convenience method for converting a byte slice to a fix sized 32 byte array.
ToBytes48 is a convenience method for converting a byte slice to a fix sized 48 byte array.
ToBytes8 is a convenience method for converting a byte slice to a fix sized 8 byte array.
ToBytes96 is a convenience method for converting a byte slice to a fix sized 96 byte array.
ToLowInt64 returns the lowest 8 bytes interpreted as little endian.
Trunc truncates the byte slices to 6 bytes.
Xor xors the bytes in x and y and returns the result.