# Functions
BigInt2BytesLe stores a positive big.Int number x into a little-endian slice z.
BigInt2Uint64Le stores a positive big.Int number x into a little-endian slice z.
BytesBe2Uint64Le converts a big-endian slice x to a little-endian slice of uint64.
BytesLe2BigInt converts a little-endian slice x into a big-endian math/big.Int.
BytesLe2Hex returns an hexadecimal string of a number stored in a little-endian order slice x.
MarshalBinary encodes a value into a byte array in a format readable by UnmarshalBinary.
MarshalBinaryLen encodes a value into an array of n bytes in a format readable by UnmarshalBinary.
Uint64Le2BigInt converts a little-endian slice x into a big number.
Uint64Le2BytesBe converts a little-endian slice x to a big-endian slice of bytes.
Uint64Le2BytesLe converts a little-endian slice x to a little-endian slice of bytes.
Uint64Le2Hex returns an hexadecimal string of a number stored in a little-endian order slice x.
UnmarshalBinary recovers a value from a byte array.
# Interfaces
A UnmarshalingValue decodes itself from a cryptobyte.String and advances the pointer.