toggle menu
lattice-kt
1.0-SNAPSHOT
jvm
switch theme
search in API
rlp
/
com.example.rlp
Package-level
declarations
Types
Functions
Types
Illegal
RLPException
Link copied to clipboard
class
IllegalRLPException
(
msg
:
String
)
:
IllegalArgumentException
RLPElement
Link copied to clipboard
data
class
RLPElement
(
val
bytes
:
ByteArray
)
:
RLPType
RLPList
Link copied to clipboard
data
class
RLPList
(
val
element
:
List
<
RLPType
>
)
:
RLPType
RLPType
Link copied to clipboard
sealed
class
RLPType
Functions
decode
RLP
Link copied to clipboard
fun
ByteArray
.
decodeRLP
(
)
:
RLPType
RLP as of Appendix B. Recursive Length Prefix at https://github.com/ethereum/yellowpaper
encode
Link copied to clipboard
fun
RLPType
.
encode
(
)
:
ByteArray
RLP as of Appendix B. Recursive Length Prefix at https://github.com/ethereum/yellowpaper
to
Byte
From
RLP
Link copied to clipboard
fun
RLPElement
.
toByteFromRLP
(
)
:
Byte
to
Int
From
RLP
Link copied to clipboard
fun
RLPElement
.
toIntFromRLP
(
)
:
Int
to
RLP
Link copied to clipboard
fun
BigInteger
.
toRLP
(
)
:
RLPElement
fun
Array
<
*
>
.
toRLP
(
)
:
RLPList
fun
Byte
.
toRLP
(
)
:
RLPElement
fun
ByteArray
.
toRLP
(
)
:
RLPElement
fun
Int
.
toRLP
(
)
:
RLPElement
fun
String
.
toRLP
(
)
:
RLPElement
RLP as of Appendix B. Recursive Length Prefix at https://github.com/ethereum/yellowpaper
to
String
From
RLP
Link copied to clipboard
fun
RLPElement
.
toStringFromRLP
(
)
:
String
to
Unsigned
Big
Integer
From
RLP
Link copied to clipboard
fun
RLPElement
.
toUnsignedBigIntegerFromRLP
(
)
:
BigInteger